function: rmd160_append_fd | (library) rmd160 |
Name
rmd160_append_fd - append the contents of an open POSIX file descriptor to a message digest
Synopsis
int rmd160_append_fd( RMD160 instance, int fd )
Description
rmd160_append_fd appends the contents of an open POSIX file descriptor to a 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.
fd is the open POSIX file descriptor from which data is read.
Return values
Errors
When RMD160_ERR_READ is returned, errno is set by read().
See also
rmd160 homepage