Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
wine-mirror
GitHub Repository: wine-mirror/wine
Path: blob/master/libs/tomcrypt/src/encauth/ocb/ocb_encrypt.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
10
/**
11
@file ocb_encrypt.c
12
OCB implementation, encrypt data, by Tom St Denis
13
*/
14
#include "tomcrypt.h"
15
16
#ifdef LTC_OCB_MODE
17
18
/**
19
Encrypt a block of data with OCB.
20
@param ocb The OCB state
21
@param pt The plaintext (length of the block size of the block cipher)
22
@param ct [out] The ciphertext (same size as the pt)
23
@return CRYPT_OK if successful
24
*/
25
int ocb_encrypt(ocb_state *ocb, const unsigned char *pt, unsigned char *ct)
26
{
27
unsigned char Z[MAXBLOCKSIZE], tmp[MAXBLOCKSIZE];
28
int err, x;
29
30
LTC_ARGCHK(ocb != NULL);
31
LTC_ARGCHK(pt != NULL);
32
LTC_ARGCHK(ct != NULL);
33
if ((err = cipher_is_valid(ocb->cipher)) != CRYPT_OK) {
34
return err;
35
}
36
if (ocb->block_len != cipher_descriptor[ocb->cipher].block_length) {
37
return CRYPT_INVALID_ARG;
38
}
39
40
/* compute checksum */
41
for (x = 0; x < ocb->block_len; x++) {
42
ocb->checksum[x] ^= pt[x];
43
}
44
45
/* Get Z[i] value */
46
ocb_shift_xor(ocb, Z);
47
48
/* xor pt in, encrypt, xor Z out */
49
for (x = 0; x < ocb->block_len; x++) {
50
tmp[x] = pt[x] ^ Z[x];
51
}
52
if ((err = cipher_descriptor[ocb->cipher].ecb_encrypt(tmp, ct, &ocb->key)) != CRYPT_OK) {
53
return err;
54
}
55
for (x = 0; x < ocb->block_len; x++) {
56
ct[x] ^= Z[x];
57
}
58
59
#ifdef LTC_CLEAN_STACK
60
zeromem(Z, sizeof(Z));
61
zeromem(tmp, sizeof(tmp));
62
#endif
63
return CRYPT_OK;
64
}
65
66
#endif
67
68