Home
last modified time | relevance | path

Searched refs:BLOWFISH_BLOCK_LEN (Results 1 – 9 of 9) sorted by relevance

/titanic_41/usr/src/lib/pkcs11/pkcs11_softtoken/common/
H A DsoftBlowfishCrypt.c163 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()
H A DsoftCrypt.h67 uint8_t ivec[BLOWFISH_BLOCK_LEN]; /* initialization vector */
68 uint8_t data[BLOWFISH_BLOCK_LEN]; /* for use by update */
H A DsoftDecryptUtil.c270 (pMechanism->ulParameterLen != BLOWFISH_BLOCK_LEN)) in soft_decrypt_init()
286 BLOWFISH_BLOCK_LEN); in soft_decrypt_init()
H A DsoftEncryptUtil.c309 (pMechanism->ulParameterLen != BLOWFISH_BLOCK_LEN)) in soft_encrypt_init()
324 BLOWFISH_BLOCK_LEN); in soft_encrypt_init()
H A DsoftKeysUtil.c1503 wkey_blksz = BLOWFISH_BLOCK_LEN; in soft_wrapkey()
/titanic_41/usr/src/uts/common/crypto/io/
H A Dblowfish.c294 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()
H A Ddprov.c4740 expected_param_len = BLOWFISH_BLOCK_LEN; in dprov_copyin_mechanism()
/titanic_41/usr/src/common/crypto/blowfish/
H A Dblowfish_impl.c742 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()
H A Dblowfish_impl.h65 #define BLOWFISH_BLOCK_LEN 8 macro