mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-14 03:30:02 +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
|