We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eeffca5 commit 1f616e3Copy full SHA for 1f616e3
README.md
@@ -6,7 +6,6 @@ C Bindings for the API of [Blake 3](https://github.com/BLAKE3-team/BLAKE3) crypt
6
7
```java
8
9
- byte[] data = "this is my data".getBytes();
10
//Test if the library is properly connected to the c native binaries
11
assert(NativeBlake3.isEnabled());
12
@@ -15,6 +14,7 @@ C Bindings for the API of [Blake 3](https://github.com/BLAKE3-team/BLAKE3) crypt
15
14
hasher.initDefault();
16
17
//read data
+ byte[] data = "this is my data".getBytes();
18
hasher.update(data);
19
//more data
20
byte[] moredata = "more data".getBytes();
0 commit comments