1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-10 18:09:00 +00:00
trezor-firmware/blowfish.h
2013-10-07 21:48:32 +02:00

11 lines
226 B
C

#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