Searched defs:cipher (Results 1 - 3 of 3) sorted by relevance

/sssd/src/util/crypto/nss/
H A Dnss_crypto.h48 CK_MECHANISM_TYPE cipher; member in struct:crypto_mech_data
/sssd/src/util/crypto/libcrypto/
H A Dcrypto_nite.c39 const EVP_CIPHER * (*cipher)(void); member in struct:cipher_mech
50 const EVP_CIPHER *cipher; local
66 cipher = mechs[AES256CBC_HMAC_SHA256].cipher();
69 evpkeylen = EVP_CIPHER_key_length(cipher);
80 evpivlen = EVP_CIPHER_iv_length(cipher);
81 outlen = plainlen + (2 * EVP_CIPHER_block_size(cipher))
97 ret = EVP_EncryptInit_ex(ctx, cipher, 0, key, evpivlen ? out : NULL);
172 const EVP_CIPHER *cipher; local
189 cipher
[all...]
H A Dcrypto_obfuscate.c48 const EVP_CIPHER * (*cipher)(void); member in struct:crypto_mech_data
63 DEBUG(SSSDBG_CRIT_FAILURE, "Unsupported cipher type\n");
128 if (!EVP_EncryptInit_ex(ctx, mech_props->cipher(), 0, keybuf, ivbuf)) {
129 DEBUG(SSSDBG_CRIT_FAILURE, "Failure to initialize cipher contex\n");
155 * uint16_t the type of the cipher
287 if (!EVP_DecryptInit_ex(ctx, mech_props->cipher(), 0, keybuf, ivbuf)) {

Completed in 632 milliseconds