1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-16 11:28:14 +00:00
trezor-firmware/blowfish.h

11 lines
226 B
C
Raw Normal View History

2013-10-07 19:10:39 +00:00
#ifndef __BLOWFISH_H__
#define __BLOWFISH_H__
#include <stdint.h>
void blowfish_setkey(uint8_t *key, int keylen);
void blowfish_encrypt(uint8_t *data, int datalen);
void blowfish_decrypt(uint8_t *data, int datalen);
#endif