tomcrypt/ocb_done_decrypt.c

63 lines
1.3 KiB
C
Raw Normal View History

2004-05-12 16:42:16 -04:00
/* LibTomCrypt, modular cryptographic library -- Tom St Denis
*
* LibTomCrypt is a library that provides various cryptographic
* algorithms in a highly modular and flexible manner.
*
* The library is free for all purposes without any express
* guarantee it works.
*
* Tom St Denis, tomstdenis@iahu.ca, http://libtomcrypt.org
*/
/* OCB Implementation by Tom St Denis */
#include "mycrypt.h"
#ifdef OCB_MODE
int ocb_done_decrypt(ocb_state *ocb,
const unsigned char *ct, unsigned long ctlen,
unsigned char *pt,
const unsigned char *tag, unsigned long taglen, int *res)
{
int err;
2004-06-19 22:41:49 -04:00
unsigned char *tagbuf;
2004-05-12 16:42:16 -04:00
unsigned long tagbuflen;
_ARGCHK(ocb != NULL);
_ARGCHK(pt != NULL);
_ARGCHK(ct != NULL);
_ARGCHK(tag != NULL);
_ARGCHK(res != NULL);
2004-06-19 22:41:49 -04:00
/* default to failed */
2004-05-12 16:42:16 -04:00
*res = 0;
2004-06-19 22:41:49 -04:00
/* allocate memory */
tagbuf = XMALLOC(MAXBLOCKSIZE);
if (tagbuf == NULL) {
return CRYPT_MEM;
}
tagbuflen = MAXBLOCKSIZE;
2004-05-12 16:42:16 -04:00
if ((err = __ocb_done(ocb, ct, ctlen, pt, tagbuf, &tagbuflen, 1)) != CRYPT_OK) {
2004-06-19 22:41:49 -04:00
goto __ERR;
2004-05-12 16:42:16 -04:00
}
if (taglen <= tagbuflen && memcmp(tagbuf, tag, taglen) == 0) {
*res = 1;
}
2004-06-19 22:41:49 -04:00
err = CRYPT_OK;
__ERR:
2004-05-12 16:42:16 -04:00
#ifdef CLEAN_STACK
2004-06-19 22:41:49 -04:00
zeromem(tagbuf, MAXBLOCKSIZE);
2004-05-12 16:42:16 -04:00
#endif
2004-06-19 22:41:49 -04:00
XFREE(tagbuf);
return err;
2004-05-12 16:42:16 -04:00
}
#endif