Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
wine-mirror
GitHub Repository: wine-mirror/wine
Path: blob/master/libs/tomcrypt/src/modes/f8/f8_decrypt.c
5972 views
1
/* LibTomCrypt, modular cryptographic library -- Tom St Denis
2
*
3
* LibTomCrypt is a library that provides various cryptographic
4
* algorithms in a highly modular and flexible manner.
5
*
6
* The library is free for all purposes without any express
7
* guarantee it works.
8
*/
9
#include "tomcrypt.h"
10
11
/**
12
@file f8_decrypt.c
13
F8 implementation, decrypt data, Tom St Denis
14
*/
15
16
#ifdef LTC_F8_MODE
17
18
/**
19
F8 decrypt
20
@param ct Ciphertext
21
@param pt [out] Plaintext
22
@param len Length of ciphertext (octets)
23
@param f8 F8 state
24
@return CRYPT_OK if successful
25
*/
26
int f8_decrypt(const unsigned char *ct, unsigned char *pt, unsigned long len, symmetric_F8 *f8)
27
{
28
LTC_ARGCHK(pt != NULL);
29
LTC_ARGCHK(ct != NULL);
30
LTC_ARGCHK(f8 != NULL);
31
return f8_encrypt(ct, pt, len, f8);
32
}
33
34
35
#endif
36
37