libbtc
bitcoinclibrary
ripemd160.h
Go to the documentation of this file.
1 
25 #ifndef __RIPEMD160_H__
26 #define __RIPEMD160_H__
27 
28 #include <stdint.h>
29 
30 void ripemd160(const uint8_t* msg, uint32_t msg_len, uint8_t* hash);
31 
32 #endif
void ripemd160(const uint8_t *msg, uint32_t msg_len, uint8_t *hash)
Definition: ripemd160.c:292