Home
last modified time | relevance | path

Searched refs:cipher_data (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/uts/common/crypto/io/
H A Ddprov.c6464 crypto_data_t cipher_data; in dprov_cipher_mac_task() local
6522 cipher_data = *((crypto_data_t *)dual_data); in dprov_cipher_mac_task()
6527 plaintext_tmp = &cipher_data; in dprov_cipher_mac_task()
6531 ciphertext_tmp = &cipher_data; in dprov_cipher_mac_task()
6538 encrypted = cipher_data.cd_length; in dprov_cipher_mac_task()
6540 cipher_data.cd_offset += encrypted; in dprov_cipher_mac_task()
6541 cipher_data.cd_length = dual_data->dd_len1 - encrypted; in dprov_cipher_mac_task()
6544 &cipher_data, NULL)) != CRYPTO_SUCCESS) in dprov_cipher_mac_task()
6553 mac_data = cipher_data; in dprov_cipher_mac_task()
6566 dual_data->dd_len1 = encrypted + cipher_data.cd_length; in dprov_cipher_mac_task()
[all …]
H A Drsa.c580 uchar_t cipher_data[MAX_RSA_KEYLENGTH_IN_BYTES]; in rsa_encrypt_common() local
620 rv = core_rsa_encrypt(key, plain_data, modulus_len, cipher_data, 1); in rsa_encrypt_common()
623 if ((rv = crypto_put_output_data(cipher_data, in rsa_encrypt_common()
/illumos-gate/usr/src/lib/libkmf/plugins/kmf_openssl/common/
H A Dcompat.h57 #define EVP_CIPHER_CTX_get_cipher_data(ctx) ctx->cipher_data
/illumos-gate/usr/src/lib/pkcs11/pkcs11_softtoken/common/
H A DsoftRSA.c250 CK_BYTE cipher_data[MAX_RSA_KEYLENGTH_IN_BYTES]; in soft_rsa_encrypt_common() local
311 rv = soft_rsa_encrypt(key, plain_data, modulus_len, cipher_data, 1); in soft_rsa_encrypt_common()
313 (void) memcpy(pEncrypted, cipher_data, modulus_len); in soft_rsa_encrypt_common()