HomeSort by: relevance | last modified time | path
    Searched defs:cipher (Results 1 - 25 of 293) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /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/demos/cipher/
aeskeywrap.c 140 EVP_CIPHER *cipher = NULL; local
154 /* Fetch the cipher implementation */
155 if ((cipher = EVP_CIPHER_fetch(libctx, "AES-256-WRAP", propq)) == NULL)
159 * Initialise an encrypt operation with the cipher/mode, key and IV.
162 if (!EVP_EncryptInit_ex2(ctx, cipher, wrap_key, wrap_iv, /* params */ NULL))
188 EVP_CIPHER_free(cipher);
198 EVP_CIPHER *cipher = NULL; local
211 /* Fetch the cipher implementation */
212 if ((cipher = EVP_CIPHER_fetch(libctx, "aes-256-wrap", propq)) == NULL)
216 * Initialise an encrypt operation with the cipher/mode, key and IV
    [all...]
ariacbc.c 73 EVP_CIPHER *cipher = NULL; local
85 /* Fetch the cipher implementation */
86 if ((cipher = EVP_CIPHER_fetch(libctx, "ARIA-256-CBC", propq)) == NULL)
90 * Initialise an encrypt operation with the cipher/mode, key and IV.
93 if (!EVP_EncryptInit_ex2(ctx, cipher, cbc_key, cbc_iv, /* params */ NULL))
119 EVP_CIPHER_free(cipher);
129 EVP_CIPHER *cipher = NULL; local
140 /* Fetch the cipher implementation */
141 if ((cipher = EVP_CIPHER_fetch(libctx, "ARIA-256-CBC", propq)) == NULL)
145 * Initialise an encrypt operation with the cipher/mode, key and IV
    [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/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/apps/
skeyutl.c 35 { "cipher", OPT_CIPHER, 's', "The cipher to generate key for" },
42 EVP_CIPHER *cipher = NULL; local
86 /* Get the cipher name, either from progname (if set) or flag. */
87 if (!opt_cipher_any(ciphername, &cipher))
90 if (cipher == NULL && skeymgmt == NULL) {
91 BIO_printf(bio_err, "Either -skeymgmt -or -cipher option should be specified\n");
99 skeymgmt ? skeymgmt : EVP_CIPHER_name(cipher),
107 skeymgmt ? skeymgmt : EVP_CIPHER_name(cipher),
112 skeymgmt ? skeymgmt : EVP_CIPHER_name(cipher));
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/cms/
cms_enc.c 31 const EVP_CIPHER *cipher = NULL; local
44 enc = ec->cipher ? 1 : 0;
56 cipher = ec->cipher;
58 * If not keeping key set cipher to NULL so subsequent calls decrypt.
61 ec->cipher = NULL;
63 cipher = EVP_get_cipherbyobj(calg->algorithm);
65 if (cipher != NULL) {
66 fetched_ciph = EVP_CIPHER_fetch(libctx, EVP_CIPHER_get0_name(cipher),
69 cipher = fetched_ciph
    [all...]

Completed in 29 milliseconds

1 2 3 4 5 6 7 8 91011>>