HomeSort by relevance Sort by last modified time
    Searched refs:blklen (Results 1 - 5 of 5) sorted by null

  /external/dropbear/libtomcrypt/src/mac/omac/
omac_done.c 40 (omac->blklen > (int)sizeof(omac->block)) || (omac->buflen > omac->blklen)) {
45 if (omac->buflen != omac->blklen) {
50 while (omac->buflen < omac->blklen) {
59 for (x = 0; x < (unsigned)omac->blklen; x++) {
70 for (x = 0; x < (unsigned)omac->blklen && x < *outlen; x++) {
omac_process.c 40 (omac->blklen > (int)sizeof(omac->block)) || (omac->buflen > omac->blklen)) {
62 if (omac->buflen == omac->blklen) {
63 for (x = 0; x < (unsigned long)omac->blklen; x++) {
73 n = MIN(inlen, (unsigned long)(omac->blklen - omac->buflen));
omac_init.c 90 omac->blklen = len;
  /external/dropbear/libtomcrypt/src/encauth/eax/
eax_init.c 38 int err, blklen; local
53 blklen = cipher_descriptor[cipher].block_length;
76 if ((err = omac_process(omac, buf, blklen)) != CRYPT_OK) {
91 buf[blklen - 1] = 1;
98 if ((err = omac_process(&eax->headeromac, buf, blklen)) != CRYPT_OK) {
122 buf[blklen-1] = 2;
123 if ((err = omac_process(&eax->ctomac, buf, blklen)) != CRYPT_OK) {
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_mac.h 31 blklen; member in struct:__anon3291

Completed in 615 milliseconds