HomeSort by: relevance | last modified time | path
    Searched defs:AESCTR_NONCESIZE (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/opencrypto/
gmac.c 104 #define AESCTR_NONCESIZE 4
119 case 16 + AESCTR_NONCESIZE:
122 case 24 + AESCTR_NONCESIZE:
125 case 32 + AESCTR_NONCESIZE:
133 memcpy(ctx->J, key + klen - AESCTR_NONCESIZE, AESCTR_NONCESIZE);
150 memcpy(ctx->J + AESCTR_NONCESIZE, iv, ivlen);
cryptosoft_xform.c 706 #define AESCTR_NONCESIZE 4
730 i >= AESCTR_NONCESIZE + AESCTR_IVSIZE; i--)
744 if (len < AESCTR_NONCESIZE)
751 case 16 + AESCTR_NONCESIZE:
754 case 24 + AESCTR_NONCESIZE:
757 case 32 + AESCTR_NONCESIZE:
764 memcpy(ctx->ac_block, key + len - AESCTR_NONCESIZE, AESCTR_NONCESIZE);
792 memcpy(ctx->ac_block + AESCTR_NONCESIZE, iv, AESCTR_IVSIZE);
794 memset(ctx->ac_block + AESCTR_NONCESIZE + AESCTR_IVSIZE, 0, 4)
    [all...]

Completed in 12 milliseconds