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
13 OMAC1 support, terminate a stream, Tom St Denis
19 Terminate an OMAC stream
20 @param omac The OMAC state
21 @param out [out] Destination for the authentication tag
22 @param outlen [in/out] The max size and resulting size of the authentication tag
23 @return CRYPT_OK if successful
25 int omac_done(omac_state *omac, unsigned char *out, unsigned long *outlen)
30 LTC_ARGCHK(omac != NULL);
31 LTC_ARGCHK(out != NULL);
32 LTC_ARGCHK(outlen != NULL);
33 if ((err = cipher_is_valid(omac->cipher_idx)) != CRYPT_OK) {
37 if ((omac->buflen > (int)sizeof(omac->block)) || (omac->buflen < 0) ||
38 (omac->blklen > (int)sizeof(omac->block)) || (omac->buflen > omac->blklen)) {
39 return CRYPT_INVALID_ARG;
43 if (omac->buflen != omac->blklen) {
44 /* add the 0x80 byte */
45 omac->block[omac->buflen++] = 0x80;
48 while (omac->buflen < omac->blklen) {
49 omac->block[omac->buflen++] = 0x00;
56 /* now xor prev + Lu[mode] */
57 for (x = 0; x < (unsigned)omac->blklen; x++) {
58 omac->block[x] ^= omac->prev[x] ^ omac->Lu[mode][x];
62 if ((err = cipher_descriptor[omac->cipher_idx].ecb_encrypt(omac->block, omac->block, &omac->key)) != CRYPT_OK) {
65 cipher_descriptor[omac->cipher_idx].done(&omac->key);
68 for (x = 0; x < (unsigned)omac->blklen && x < *outlen; x++) {
69 out[x] = omac->block[x];
73 #ifdef LTC_CLEAN_STACK
74 zeromem(omac, sizeof(*omac));
82 /* ref: $Format:%D$ */
83 /* git commit: $Format:%H$ */
84 /* commit time: $Format:%ai$ */