Skip to content

Commit 1f616e3

Browse files
author
sken
authored
Update README.md
1 parent eeffca5 commit 1f616e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ C Bindings for the API of [Blake 3](https://github.com/BLAKE3-team/BLAKE3) crypt
66

77
```java
88

9-
byte[] data = "this is my data".getBytes();
109
//Test if the library is properly connected to the c native binaries
1110
assert(NativeBlake3.isEnabled());
1211

@@ -15,6 +14,7 @@ C Bindings for the API of [Blake 3](https://github.com/BLAKE3-team/BLAKE3) crypt
1514
hasher.initDefault();
1615

1716
//read data
17+
byte[] data = "this is my data".getBytes();
1818
hasher.update(data);
1919
//more data
2020
byte[] moredata = "more data".getBytes();

0 commit comments

Comments
 (0)