1 /* LibTomCrypt, modular cryptographic library -- Tom St Denis
3 * LibTomCrypt is a library that provides various cryptographic
4 * algorithms in a highly modular and flexible manner.
6 * The library is free for all purposes without any express
12 OCB implementation, decrypt data, by Tom St Denis
19 Decrypt a block with OCB.
20 @param ocb The OCB state
21 @param ct The ciphertext (length of the block size of the block cipher)
22 @param pt [out] The plaintext (length of ct)
23 @return CRYPT_OK if successful
25 int ocb_decrypt(ocb_state *ocb, const unsigned char *ct, unsigned char *pt)
27 unsigned char Z[MAXBLOCKSIZE], tmp[MAXBLOCKSIZE];
30 LTC_ARGCHK(ocb != NULL);
31 LTC_ARGCHK(pt != NULL);
32 LTC_ARGCHK(ct != NULL);
34 /* check if valid cipher */
35 if ((err = cipher_is_valid(ocb->cipher)) != CRYPT_OK) {
38 LTC_ARGCHK(cipher_descriptor[ocb->cipher].ecb_decrypt != NULL);
41 if (ocb->block_len != cipher_descriptor[ocb->cipher].block_length) {
42 return CRYPT_INVALID_ARG;
46 ocb_shift_xor(ocb, Z);
48 /* xor ct in, encrypt, xor Z out */
49 for (x = 0; x < ocb->block_len; x++) {
50 tmp[x] = ct[x] ^ Z[x];
52 if ((err = cipher_descriptor[ocb->cipher].ecb_decrypt(tmp, pt, &ocb->key)) != CRYPT_OK) {
55 for (x = 0; x < ocb->block_len; x++) {
59 /* compute checksum */
60 for (x = 0; x < ocb->block_len; x++) {
61 ocb->checksum[x] ^= pt[x];
65 #ifdef LTC_CLEAN_STACK
66 zeromem(Z, sizeof(Z));
67 zeromem(tmp, sizeof(tmp));
75 /* ref: $Format:%D$ */
76 /* git commit: $Format:%H$ */
77 /* commit time: $Format:%ai$ */