| /src/crypto/external/apache2/openssl/dist/test/ |
| evp_byname_test.c | 28 const EVP_CIPHER *cipher; local 30 if (!TEST_ptr(cipher = EVP_get_cipherbyname("AES-256-WRAP")))
|
| /src/crypto/external/bsd/openssl/dist/test/ |
| evp_byname_test.c | 28 const EVP_CIPHER *cipher; local 30 if (!TEST_ptr(cipher = EVP_get_cipherbyname("AES-256-WRAP")))
|
| /src/crypto/external/apache2/openssl/dist/providers/implementations/include/prov/ |
| macsignature.h | 20 PROV_CIPHER cipher; member in struct:mac_key_st
|
| /src/crypto/external/bsd/openssl/dist/providers/implementations/include/prov/ |
| macsignature.h | 21 PROV_CIPHER cipher; member in struct:mac_key_st
|
| /src/external/bsd/elftosb/dist/common/ |
| RijndaelCBCMAC.cpp | 55 Rijndael cipher; local 56 cipher.init(Rijndael::CBC, Rijndael::Encrypt, m_key, Rijndael::Key16Bytes, m_mac); 57 cipher.blockEncrypt(data, BLOCK_SIZE * 8, m_mac); // size is in bits
|
| /src/crypto/external/apache2/openssl/dist/crypto/evp/ |
| p_seal.c | 27 const EVP_CIPHER *cipher; local 36 if ((cipher = EVP_CIPHER_CTX_get0_cipher(ctx)) != NULL 37 && (prov = EVP_CIPHER_get0_provider(cipher)) != NULL)
|
| cmeth_lib.c | 25 EVP_CIPHER *cipher = evp_cipher_new(); local 27 if (cipher != NULL) { 28 cipher->nid = cipher_type; 29 cipher->block_size = block_size; 30 cipher->key_len = key_len; 31 cipher->origin = EVP_ORIG_METH; 33 return cipher; 36 EVP_CIPHER *EVP_CIPHER_meth_dup(const EVP_CIPHER *cipher) 44 if (cipher->prov != NULL) 47 if ((to = EVP_CIPHER_meth_new(cipher->nid, cipher->block_size [all...] |
| /src/crypto/external/apache2/openssl/dist/providers/common/include/prov/ |
| provider_util.h | 15 * References to the underlying cipher implementation. |cipher| caches 16 * the cipher, always. |alloc_cipher| only holds a reference to an 17 * explicitly fetched cipher. 19 const EVP_CIPHER *cipher; /* cipher */ member in struct:__anon459 20 EVP_CIPHER *alloc_cipher; /* fetched cipher */ 23 ENGINE *engine; /* cipher engine */ 39 /* Cipher functions */ 41 * Load a cipher from the specified parameters with the specified context [all...] |
| /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/ |
| rc2test.c | 46 const void *cipher; member in struct:__anon834 135 if (memcmp(t, tests[i].cipher, 8) != 0) {
|
| /src/crypto/external/bsd/openssl/dist/crypto/evp/ |
| p_seal.c | 28 const EVP_CIPHER *cipher; local 37 if ((cipher = EVP_CIPHER_CTX_get0_cipher(ctx)) != NULL 38 && (prov = EVP_CIPHER_get0_provider(cipher)) != NULL)
|
| /src/crypto/external/bsd/openssl/dist/demos/cipher/ |
| aeskeywrap.c | 60 EVP_CIPHER *cipher = NULL; local 74 /* Fetch the cipher implementation */ 75 if ((cipher = EVP_CIPHER_fetch(libctx, "AES-256-WRAP", propq)) == NULL) 79 * Initialise an encrypt operation with the cipher/mode, key and IV. 82 if (!EVP_EncryptInit_ex2(ctx, cipher, wrap_key, wrap_iv, /* params */ NULL)) 108 EVP_CIPHER_free(cipher); 118 EVP_CIPHER *cipher = NULL; local 131 /* Fetch the cipher implementation */ 132 if ((cipher = EVP_CIPHER_fetch(libctx, "aes-256-wrap", propq)) == NULL) 136 * Initialise an encrypt operation with the cipher/mode, key and IV [all...] |
| ariacbc.c | 59 EVP_CIPHER *cipher = NULL; local 73 /* Fetch the cipher implementation */ 74 if ((cipher = EVP_CIPHER_fetch(libctx, "ARIA-256-CBC", propq)) == NULL) 78 * Initialise an encrypt operation with the cipher/mode, key and IV. 81 if (!EVP_EncryptInit_ex2(ctx, cipher, cbc_key, cbc_iv, /* params */ NULL)) 107 EVP_CIPHER_free(cipher); 117 EVP_CIPHER *cipher = NULL; local 129 /* Fetch the cipher implementation */ 130 if ((cipher = EVP_CIPHER_fetch(libctx, "ARIA-256-CBC", propq)) == NULL) 134 * Initialise an encrypt operation with the cipher/mode, key and IV [all...] |
| /src/crypto/external/bsd/openssl/dist/providers/common/include/prov/ |
| provider_util.h | 15 * References to the underlying cipher implementation. |cipher| caches 16 * the cipher, always. |alloc_cipher| only holds a reference to an 17 * explicitly fetched cipher. 19 const EVP_CIPHER *cipher; /* cipher */ member in struct:__anon1529 20 EVP_CIPHER *alloc_cipher; /* fetched cipher */ 23 ENGINE *engine; /* cipher engine */ 39 /* Cipher functions */ 41 * Load a cipher from the specified parameters with the specified context [all...] |
| /src/crypto/external/bsd/openssl.old/dist/test/ |
| gosttest.c | 20 char *cipher; member in struct:__anon2244 52 if (!TEST_true(SSL_CTX_set_cipher_list(cctx, ciphers[idx].cipher)) 53 || !TEST_true(SSL_CTX_set_cipher_list(sctx, ciphers[idx].cipher))
|
| /src/external/bsd/libfido2/dist/src/ |
| aes256.c | 15 const EVP_CIPHER *cipher; local 34 (cipher = EVP_aes_256_cbc()) == NULL) { 38 if (EVP_CipherInit(ctx, cipher, key->ptr, iv, encrypt) == 0 || 120 const EVP_CIPHER *cipher; local 146 (cipher = EVP_aes_256_gcm()) == NULL) { 150 if (EVP_CipherInit(ctx, cipher, key->ptr, nonce->ptr, encrypt) == 0) {
|
| /src/external/bsd/wpa/dist/src/common/ |
| ptksa_cache.h | 24 u32 cipher; member in struct:ptksa_cache_entry 38 const u8 *addr, u32 cipher); 42 const u8 *addr, u32 cipher, 48 void ptksa_cache_flush(struct ptksa_cache *ptksa, const u8 *addr, u32 cipher);
|
| /src/crypto/external/apache2/openssl/dist/demos/cipher/ |
| aeskeywrap.c | 62 EVP_CIPHER *cipher = NULL; local 76 /* Fetch the cipher implementation */ 77 if ((cipher = EVP_CIPHER_fetch(libctx, "AES-256-WRAP", propq)) == NULL) 81 * Initialise an encrypt operation with the cipher/mode, key and IV. 84 if (!EVP_EncryptInit_ex2(ctx, cipher, wrap_key, wrap_iv, /* params */ NULL)) 110 EVP_CIPHER_free(cipher); 120 EVP_CIPHER *cipher = NULL; local 133 /* Fetch the cipher implementation */ 134 if ((cipher = EVP_CIPHER_fetch(libctx, "aes-256-wrap", propq)) == NULL) 138 * Initialise an encrypt operation with the cipher/mode, key and IV [all...] |
| ariacbc.c | 59 EVP_CIPHER *cipher = NULL; local 71 /* Fetch the cipher implementation */ 72 if ((cipher = EVP_CIPHER_fetch(libctx, "ARIA-256-CBC", propq)) == NULL) 76 * Initialise an encrypt operation with the cipher/mode, key and IV. 79 if (!EVP_EncryptInit_ex2(ctx, cipher, cbc_key, cbc_iv, /* params */ NULL)) 105 EVP_CIPHER_free(cipher); 115 EVP_CIPHER *cipher = NULL; local 126 /* Fetch the cipher implementation */ 127 if ((cipher = EVP_CIPHER_fetch(libctx, "ARIA-256-CBC", propq)) == NULL) 131 * Initialise an encrypt operation with the cipher/mode, key and IV [all...] |
| aesccm.c | 74 EVP_CIPHER *cipher = NULL; local 92 /* Fetch the cipher implementation */ 93 if ((cipher = EVP_CIPHER_fetch(libctx, "AES-192-CCM", propq)) == NULL) 104 * Initialise encrypt operation with the cipher & mode, 107 if (!EVP_EncryptInit_ex2(ctx, cipher, NULL, NULL, params)) 151 EVP_CIPHER_free(cipher); 161 EVP_CIPHER *cipher = NULL; local 176 /* Fetch the cipher implementation */ 177 if ((cipher = EVP_CIPHER_fetch(libctx, "AES-192-CCM", propq)) == NULL) 188 * Initialise decrypt operation with the cipher & mode [all...] |
| /src/crypto/external/apache2/openssl/dist/providers/implementations/ciphers/ |
| cipher_aes_siv.h | 16 int (*cipher)(void *ctx, unsigned char *out, const unsigned char *in, member in struct:prov_cipher_hw_aes_siv_st
|
| /src/crypto/external/bsd/openssl/dist/providers/implementations/ciphers/ |
| cipher_aes_siv.h | 16 int (*cipher)(void *ctx, unsigned char *out, const unsigned char *in, member in struct:prov_cipher_hw_aes_siv_st
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/evp/ |
| cmeth_lib.c | 18 EVP_CIPHER *cipher = OPENSSL_zalloc(sizeof(EVP_CIPHER)); local 20 if (cipher != NULL) { 21 cipher->nid = cipher_type; 22 cipher->block_size = block_size; 23 cipher->key_len = key_len; 25 return cipher; 28 EVP_CIPHER *EVP_CIPHER_meth_dup(const EVP_CIPHER *cipher) 30 EVP_CIPHER *to = EVP_CIPHER_meth_new(cipher->nid, cipher->block_size, 31 cipher->key_len) [all...] |
| /src/crypto/external/cpl/trousers/dist/src/trspi/crypto/openssl/ |
| symmetric.c | 141 EVP_CIPHER *cipher = NULL; local 152 cipher = (EVP_CIPHER *)EVP_aes_128_cbc(); 155 cipher = (EVP_CIPHER *)EVP_aes_128_ofb(); 172 cipher = (EVP_CIPHER *)EVP_des_cbc(); 175 cipher = (EVP_CIPHER *)EVP_des_ofb(); 192 cipher = (EVP_CIPHER *)EVP_des_ede3_cbc(); 195 cipher = (EVP_CIPHER *)EVP_des_ede3_ofb(); 212 cipher = (EVP_CIPHER *)EVP_aes_192_cbc(); 215 cipher = (EVP_CIPHER *)EVP_aes_192_ofb(); 232 cipher = (EVP_CIPHER *)EVP_aes_256_cbc() 258 EVP_CIPHER *cipher; local 332 EVP_CIPHER *cipher; local [all...] |
| /src/external/bsd/ppp/dist/pppd/ |
| crypto-priv.h | 61 PPP_CIPHER cipher; member in struct:_PPP_CIPHER_CTX
|
| /src/crypto/external/apache2/openssl/dist/crypto/pem/ |
| pem_info.c | 155 EVP_CIPHER_INFO cipher; local 157 if (!PEM_get_EVP_CIPHER_INFO(header, &cipher)) 159 if (!PEM_do_header(&cipher, data, &len, cb, u)) 270 objstr = EVP_CIPHER_get0_name(xi->enc_cipher.cipher);
|