mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-16 03:18:09 +00:00
11 lines
226 B
C
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
|