UpdateFunction
Base interface for incremental (streaming) cryptographic operations such as hashing and signing.
Data should be fed incrementally via update, and the result could be obtained from a subtype-specific finalization method. Should be closed after use to release resources.
Inheritors
Functions
Link copied to clipboard
Reads all available data from the source and feeds it into this function.
Feeds data from the source byte array into this function. Only the portion from startIndex (inclusive) to endIndex (exclusive) is processed.
Feeds data from the source byte string into this function. Only the portion from startIndex (inclusive) to endIndex (exclusive) is processed.
Link copied to clipboard
Link copied to clipboard