1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-09 17:39:04 +00:00
trezor-firmware/ripemd160.h
2013-09-16 01:32:56 +02:00

9 lines
147 B
C

#ifndef __RIPEMD160_H__
#define __RIPEMD160_H__
#include <stdint.h>
void ripemd160(const uint8_t *msg, uint32_t msg_len, uint8_t *hash);
#endif