Add phnxdeco with debian patch set (version 0.33-3).
[delutions.git] / tc / crypto / Serpent.h
blob910fa072c75231712cd5b7188bc0673bf122840c
1 #ifndef HEADER_Crypto_Serpent
2 #define HEADER_Crypto_Serpent
4 #ifdef __cplusplus
5 extern "C"
7 #endif
9 void serpent_set_key(const unsigned __int8 userKey[], int keylen, unsigned __int8 *ks);
10 void serpent_encrypt(const unsigned __int8 *inBlock, unsigned __int8 *outBlock, unsigned __int8 *ks);
11 void serpent_decrypt(const unsigned __int8 *inBlock, unsigned __int8 *outBlock, unsigned __int8 *ks);
13 #ifdef __cplusplus
15 #endif
17 #endif // HEADER_Crypto_Serpent