Searched refs:blocksize (Results 1 – 13 of 13) sorted by relevance
37 if ((f9->blocksize > cipher_descriptor[f9->cipher]->block_length) || (f9->blocksize < 0) || in f9_process()38 (f9->buflen > f9->blocksize) || (f9->buflen < 0)) { in f9_process()44 while (inlen >= (unsigned long)f9->blocksize) { in f9_process()45 for (x = 0; x < f9->blocksize; x += sizeof(LTC_FAST_TYPE)) { in f9_process()49 for (x = 0; x < f9->blocksize; x += sizeof(LTC_FAST_TYPE)) { in f9_process()52 in += f9->blocksize; in f9_process()53 inlen -= f9->blocksize; in f9_process()59 if (f9->buflen == f9->blocksize) { in f9_process()61 for (x = 0; x < f9->blocksize; x++) { in f9_process()
36 if ((f9->blocksize > cipher_descriptor[f9->cipher]->block_length) || (f9->blocksize < 0) || in f9_done()37 (f9->buflen > f9->blocksize) || (f9->buflen < 0)) { in f9_done()45 for (x = 0; x < f9->blocksize; x++) { in f9_done()60 for (x = 0; x < f9->blocksize && (unsigned long)x < *outlen; x++) { in f9_done()
56 f9->blocksize = cipher_descriptor[cipher]->block_length; in f9_init()
40 if ((xcbc->blocksize > cipher_descriptor[xcbc->cipher]->block_length) || (xcbc->blocksize < 0) || in xcbc_process()41 (xcbc->buflen > xcbc->blocksize) || (xcbc->buflen < 0)) { in xcbc_process()47 while (inlen > (unsigned long)xcbc->blocksize) { in xcbc_process()48 for (x = 0; x < xcbc->blocksize; x += sizeof(LTC_FAST_TYPE)) { in xcbc_process()52 in += xcbc->blocksize; in xcbc_process()53 inlen -= xcbc->blocksize; in xcbc_process()59 if (xcbc->buflen == xcbc->blocksize) { in xcbc_process()
36 if ((xcbc->blocksize > cipher_descriptor[xcbc->cipher]->block_length) || (xcbc->blocksize < 0) || in xcbc_done()37 (xcbc->buflen > xcbc->blocksize) || (xcbc->buflen < 0)) { in xcbc_done()42 if (xcbc->buflen == xcbc->blocksize) { in xcbc_done()44 for (x = 0; x < xcbc->blocksize; x++) { in xcbc_done()50 for (x = 0; x < xcbc->blocksize; x++) { in xcbc_done()60 for (x = 0; x < xcbc->blocksize && (unsigned long)x < *outlen; x++) { in xcbc_done()
88 xcbc->blocksize = cipher_descriptor[cipher]->block_length; in xcbc_init()
68 size_t blocksize ) in cmac_multiply_by_u() argument76 if( blocksize == MBEDTLS_AES_BLOCK_SIZE ) in cmac_multiply_by_u()80 else if( blocksize == MBEDTLS_DES3_BLOCK_SIZE ) in cmac_multiply_by_u()89 for( i = (int)blocksize - 1; i >= 0; i-- ) in cmac_multiply_by_u()109 output[ blocksize - 1 ] ^= R_n & mask; in cmac_multiply_by_u()
19 #define LTC_HMAC_BLOCKSIZE hash_descriptor[hash]->blocksize
22 unsigned long v = hash_descriptor[hash_id]->blocksize; in pkcs12_kdf()
184 blocksize; member218 blocksize; member
214 unsigned long blocksize; member
73 hash_descriptor[idx]->blocksize = cipher_descriptor[cipher]->block_length; in chc_register()
Completed in 23 milliseconds