@@ -119,19 +119,22 @@ private Blake3(final int[] key, final int flags) {
119
119
120
120
/**
121
121
* Resets this instance back to its initial state when it was first constructed.
122
+ * @return this
122
123
*/
123
- public void reset () {
124
+ public Blake3 reset () {
124
125
engineState .reset ();
126
+ return this ;
125
127
}
126
128
127
129
/**
128
130
* Updates this hash state using the provided bytes.
129
131
*
130
132
* @param in source array to update data from
133
+ * @return this
131
134
* @throws NullPointerException if in is null
132
135
*/
133
- public void update (final byte [] in ) {
134
- update (in , 0 , in .length );
136
+ public Blake3 update (final byte [] in ) {
137
+ return update (in , 0 , in .length );
135
138
}
136
139
137
140
/**
@@ -140,24 +143,27 @@ public void update(final byte[] in) {
140
143
* @param in source array to update data from
141
144
* @param offset where in the array to begin reading bytes
142
145
* @param length number of bytes to update
146
+ * @return this
143
147
* @throws NullPointerException if in is null
144
148
* @throws IndexOutOfBoundsException if offset or length are negative or if offset + length is greater than the
145
149
* length of the provided array
146
150
*/
147
- public void update (final byte [] in , final int offset , final int length ) {
151
+ public Blake3 update (final byte [] in , final int offset , final int length ) {
148
152
checkBufferArgs (in , offset , length );
149
153
engineState .inputData (in , offset , length );
154
+ return this ;
150
155
}
151
156
152
157
/**
153
158
* Finalizes hash output data that depends on the sequence of updated bytes preceding this invocation and any
154
159
* previously finalized bytes. Note that this can finalize up to 2<sup>64</sup> bytes per instance.
155
160
*
156
161
* @param out destination array to finalize bytes into
162
+ * @return this
157
163
* @throws NullPointerException if out is null
158
164
*/
159
- public void doFinalize (final byte [] out ) {
160
- doFinalize (out , 0 , out .length );
165
+ public Blake3 doFinalize (final byte [] out ) {
166
+ return doFinalize (out , 0 , out .length );
161
167
}
162
168
163
169
/**
@@ -167,13 +173,15 @@ public void doFinalize(final byte[] out) {
167
173
* @param out destination array to finalize bytes into
168
174
* @param offset where in the array to begin writing bytes to
169
175
* @param length number of bytes to finalize
176
+ * @return this
170
177
* @throws NullPointerException if out is null
171
178
* @throws IndexOutOfBoundsException if offset or length are negative or if offset + length is greater than the
172
179
* length of the provided array
173
180
*/
174
- public void doFinalize (final byte [] out , final int offset , final int length ) {
181
+ public Blake3 doFinalize (final byte [] out , final int offset , final int length ) {
175
182
checkBufferArgs (out , offset , length );
176
183
engineState .outputHash (out , offset , length );
184
+ return this ;
177
185
}
178
186
179
187
/**
@@ -244,9 +252,7 @@ public static Blake3 initKeyDerivationFunction(final byte[] kdfContext) {
244
252
* @throws NullPointerException if data is null
245
253
*/
246
254
public static byte [] hash (final byte [] data ) {
247
- final Blake3 blake3 = Blake3 .initHash ();
248
- blake3 .update (data );
249
- return blake3 .doFinalize (OUT_LEN );
255
+ return Blake3 .initHash ().update (data ).doFinalize (OUT_LEN );
250
256
}
251
257
252
258
/**
@@ -258,9 +264,7 @@ public static byte[] hash(final byte[] data) {
258
264
* @throws NullPointerException if key or data are null
259
265
*/
260
266
public static byte [] keyedHash (final byte [] key , final byte [] data ) {
261
- final Blake3 blake3 = Blake3 .initKeyedHash (key );
262
- blake3 .update (data );
263
- return blake3 .doFinalize (OUT_LEN );
267
+ return Blake3 .initKeyedHash (key ).update (data ).doFinalize (OUT_LEN );
264
268
}
265
269
266
270
private static void checkBufferArgs (final byte [] buffer , final int offset , final int length ) {
0 commit comments