function: rmd160_append | (library) rmd160 |
Name
rmd160_append - append bytes to message digest
Synopsis
int rmd160_append( RMD160 instance, size_t length, const unsigned char *data )
Description
rmd160_append appends zero or more bytes of data to the specified RMD160 message digest instance.
instance is the value returned by rmd160_new() that identifies which RMD160 message digest instance the data is to be appended to.
length is the length of the data string, which may contain any byte code value.
data is the pointer to the array of length bytes containing the data to be appended.
Return values
Errors
Errors are given in the return value.
See also
rmd160 homepage