public interface CryptoChunker extends CryptoProcessor
combines chunks of data to a
compact result.HashCreator,
SignatureProcessor| Modifier and Type | Method and Description |
|---|---|
default void |
update(byte[] input) |
void |
update(byte[] input,
int offset,
int length) |
default void |
update(CryptoBinary input) |
process, process, process, process, resetgetAlgorithmdefault void update(byte[] input)
input - the next chunk of data.MessageDigest.update(byte[]),
Signature.update(byte[])void update(byte[] input,
int offset,
int length)
input - the next chunk of data.offset - the index where to start reading data from input.length - the number of bytes to read from input.MessageDigest.update(byte[], int, int),
Signature.update(byte[], int, int)default void update(CryptoBinary input)
input - the CryptoBinary containing the next chunk of data.MessageDigest.update(byte[]),
Signature.update(byte[])Copyright © 2001–2019 mmm-Team. All rights reserved.