Go to the documentation of this file.00001
00002
00003 #ifndef RMD160OSSL_H_INCLUDED
00004 #define RMD160OSSL_H_INCLUDED
00005
00006 #include <stddef.h>
00007 #include <openssl/ripemd.h>
00008
00009 #define RMD160_CTX RIPEMD160_CTX
00010
00011 #define RMD160_Init RIPEMD160_Init
00012 #define RMD160_Update RIPEMD160_Update
00013
00014 #define RMD160_BLOCK_LENGTH RIPEMD160_CBLOCK
00015 #define RMD160_DIGEST_LENGTH RIPEMD160_DIGEST_LENGTH
00016
00017 void RMD160_Finish(RMD160_CTX *ctx, char *buf);
00018
00019 #endif
00020