Searched refs:BLOWFISH_BLOCK_LEN (Results 1 – 9 of 9) sorted by relevance
163 if ((ulDataLen % BLOWFISH_BLOCK_LEN) != 0) { in soft_blowfish_encrypt_common()201 if (total_len < BLOWFISH_BLOCK_LEN) { in soft_blowfish_encrypt_common()219 remain = total_len % BLOWFISH_BLOCK_LEN; in soft_blowfish_encrypt_common()340 if ((ulEncryptedLen % BLOWFISH_BLOCK_LEN) != 0) { in soft_blowfish_decrypt_common()371 if (total_len < BLOWFISH_BLOCK_LEN) { in soft_blowfish_decrypt_common()386 remain = total_len % BLOWFISH_BLOCK_LEN; in soft_blowfish_decrypt_common()498 (void) memcpy(&cbc_ctx->cbc_iv[0], ivec, BLOWFISH_BLOCK_LEN); in blowfish_cbc_ctx_init()
67 uint8_t ivec[BLOWFISH_BLOCK_LEN]; /* initialization vector */68 uint8_t data[BLOWFISH_BLOCK_LEN]; /* for use by update */
270 (pMechanism->ulParameterLen != BLOWFISH_BLOCK_LEN)) in soft_decrypt_init()286 BLOWFISH_BLOCK_LEN); in soft_decrypt_init()
309 (pMechanism->ulParameterLen != BLOWFISH_BLOCK_LEN)) in soft_encrypt_init()324 BLOWFISH_BLOCK_LEN); in soft_encrypt_init()
1503 wkey_blksz = BLOWFISH_BLOCK_LEN; in soft_wrapkey()
294 mechanism->cm_param_len != BLOWFISH_BLOCK_LEN) in blowfish_common_init()348 if ((plaintext->cd_length & (BLOWFISH_BLOCK_LEN - 1)) != 0) in blowfish_encrypt()390 if ((ciphertext->cd_length & (BLOWFISH_BLOCK_LEN - 1)) != 0) in blowfish_decrypt()435 out_len &= ~(BLOWFISH_BLOCK_LEN - 1); in blowfish_encrypt_update()498 out_len &= ~(BLOWFISH_BLOCK_LEN - 1); in blowfish_decrypt_update()611 if ((plaintext->cd_length & (BLOWFISH_BLOCK_LEN - 1)) != 0) in blowfish_encrypt_atomic()624 mechanism->cm_param_len != BLOWFISH_BLOCK_LEN) in blowfish_encrypt_atomic()698 if ((ciphertext->cd_length & (BLOWFISH_BLOCK_LEN - 1)) != 0) in blowfish_decrypt_atomic()711 mechanism->cm_param_len != BLOWFISH_BLOCK_LEN) in blowfish_decrypt_atomic()856 BLOWFISH_BLOCK_LEN, blowfish_copy_block64); in blowfish_common_init_ctx()
4740 expected_param_len = BLOWFISH_BLOCK_LEN; in dprov_copyin_mechanism()
742 BLOWFISH_BLOCK_LEN, blowfish_encrypt_block, in blowfish_encrypt_contiguous_blocks()746 BLOWFISH_BLOCK_LEN, blowfish_encrypt_block); in blowfish_encrypt_contiguous_blocks()763 BLOWFISH_BLOCK_LEN, blowfish_decrypt_block, in blowfish_decrypt_contiguous_blocks()767 BLOWFISH_BLOCK_LEN, blowfish_decrypt_block); in blowfish_decrypt_contiguous_blocks()
65 #define BLOWFISH_BLOCK_LEN 8 macro