mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-09 17:10:17 +00:00
9 lines
147 B
C
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
|