Home
last modified time | relevance | path

Searched defs:cipher (Results 1 – 25 of 205) sorted by relevance

123456789

/third_party/openssl/crypto/evp/
Dcmeth_lib.c18 EVP_CIPHER *cipher = OPENSSL_zalloc(sizeof(EVP_CIPHER)); in EVP_CIPHER_meth_new() local
28 EVP_CIPHER *EVP_CIPHER_meth_dup(const EVP_CIPHER *cipher) in EVP_CIPHER_meth_dup()
38 void EVP_CIPHER_meth_free(EVP_CIPHER *cipher) in EVP_CIPHER_meth_free()
43 int EVP_CIPHER_meth_set_iv_length(EVP_CIPHER *cipher, int iv_len) in EVP_CIPHER_meth_set_iv_length()
49 int EVP_CIPHER_meth_set_flags(EVP_CIPHER *cipher, unsigned long flags) in EVP_CIPHER_meth_set_flags()
55 int EVP_CIPHER_meth_set_impl_ctx_size(EVP_CIPHER *cipher, int ctx_size) in EVP_CIPHER_meth_set_impl_ctx_size()
61 int EVP_CIPHER_meth_set_init(EVP_CIPHER *cipher, in EVP_CIPHER_meth_set_init()
71 int EVP_CIPHER_meth_set_do_cipher(EVP_CIPHER *cipher, in EVP_CIPHER_meth_set_do_cipher()
81 int EVP_CIPHER_meth_set_cleanup(EVP_CIPHER *cipher, in EVP_CIPHER_meth_set_cleanup()
88 int EVP_CIPHER_meth_set_set_asn1_params(EVP_CIPHER *cipher, in EVP_CIPHER_meth_set_set_asn1_params()
[all …]
Devp_enc.c52 int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_CipherInit()
60 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_CipherInit_ex()
235 int EVP_EncryptInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_EncryptInit()
241 int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_EncryptInit_ex()
248 int EVP_DecryptInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_DecryptInit()
254 int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_DecryptInit_ex()
/third_party/boringssl/src/ssl/
Dssl_cipher.cc477 const SSL_CIPHER *cipher; member
562 size_t *out_fixed_iv_len, const SSL_CIPHER *cipher, in ssl_cipher_get_evp_aead()
639 const SSL_CIPHER *cipher) { in ssl_get_handshake_digest()
716 for (const SSL_CIPHER &cipher : kCiphers) { in ssl_cipher_collect_ciphers() local
787 void SSLCipherPreferenceList::Remove(const SSL_CIPHER *cipher) { in Remove()
1081 const SSL_CIPHER *cipher = &kCiphers[j]; in ssl_cipher_process_rulestr() local
1283 uint16_t ssl_cipher_get_value(const SSL_CIPHER *cipher) { in ssl_cipher_get_value()
1304 bool ssl_cipher_uses_certificate_auth(const SSL_CIPHER *cipher) { in ssl_cipher_uses_certificate_auth()
1308 bool ssl_cipher_requires_server_key_exchange(const SSL_CIPHER *cipher) { in ssl_cipher_requires_server_key_exchange()
1314 size_t ssl_cipher_get_record_split_len(const SSL_CIPHER *cipher) { in ssl_cipher_get_record_split_len()
[all …]
Dhandoff.cc35 for (const SSL_CIPHER& cipher : all_ciphers) { in serialize_features() local
107 const SSL_CIPHER *cipher = SSL_get_cipher_by_value(id); in apply_remote_features() local
327 uint64_t handback_version, negotiated_token_binding_param, cipher, type; in SSL_apply_handback() local
/third_party/boringssl/src/crypto/fipsmodule/cipher/
Dcipher.c134 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_CipherInit_ex()
231 int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_EncryptInit_ex()
236 int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_DecryptInit_ex()
576 int EVP_CIPHER_nid(const EVP_CIPHER *cipher) { return cipher->nid; } in EVP_CIPHER_nid()
578 unsigned EVP_CIPHER_block_size(const EVP_CIPHER *cipher) { in EVP_CIPHER_block_size()
582 unsigned EVP_CIPHER_key_length(const EVP_CIPHER *cipher) { in EVP_CIPHER_key_length()
586 unsigned EVP_CIPHER_iv_length(const EVP_CIPHER *cipher) { in EVP_CIPHER_iv_length()
590 uint32_t EVP_CIPHER_flags(const EVP_CIPHER *cipher) { in EVP_CIPHER_flags()
594 uint32_t EVP_CIPHER_mode(const EVP_CIPHER *cipher) { in EVP_CIPHER_mode()
598 int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_CipherInit()
[all …]
/third_party/node/benchmark/crypto/
Daes-gcm-throughput.js7 cipher: ['aes-128-gcm', 'aes-192-gcm', 'aes-256-gcm'], property
11 function main({ n, len, cipher }) { field
20 function AEAD_Bench(cipher, message, associate_data, key, iv, n, len) { argument
Dcipher-stream.js6 cipher: ['AES192', 'AES256'], property
14 function main({ api, cipher, type, len, writes }) { property
/third_party/FreeBSD/sys/crypto/rijndael/
Drijndael-api-fst.c73 int rijndael_cipherInit(cipherInstance *cipher, BYTE mode, char *IV) { in rijndael_cipherInit()
87 int rijndael_blockEncrypt(cipherInstance *cipher, keyInstance *key, in rijndael_blockEncrypt()
202 int rijndael_padEncrypt(cipherInstance *cipher, keyInstance *key, in rijndael_padEncrypt()
265 int rijndael_blockDecrypt(cipherInstance *cipher, keyInstance *key, in rijndael_blockDecrypt()
364 int rijndael_padDecrypt(cipherInstance *cipher, keyInstance *key, in rijndael_padDecrypt()
/third_party/node/lib/internal/crypto/
Dcipher.js96 function createCipherBase(cipher, credential, options, decipher, iv) { argument
110 function createCipher(cipher, password, options, decipher) { argument
117 function createCipherWithIV(cipher, key, options, decipher, iv) { argument
124 function Cipher(cipher, password, options) { argument
221 function Cipheriv(cipher, key, iv, options) { argument
246 function Decipher(cipher, password, options) { argument
258 function Decipheriv(cipher, key, iv, options) { argument
/third_party/boringssl/src/decrepit/evp/
Devp_do_all.c18 void EVP_CIPHER_do_all_sorted(void (*callback)(const EVP_CIPHER *cipher, in EVP_CIPHER_do_all_sorted()
70 void EVP_MD_do_all_sorted(void (*callback)(const EVP_MD *cipher, in EVP_MD_do_all_sorted()
/third_party/boringssl/src/util/fipstools/cavp/
Dcavp_aes_test.cc31 const EVP_CIPHER *cipher; member
43 const EVP_CIPHER *cipher, std::vector<uint8_t> *out, in MonteCarlo()
150 const EVP_CIPHER *cipher = ctx->cipher; in TestCipher() local
208 const EVP_CIPHER *cipher = GetCipher(argv[2]); in cavp_aes_test_main() local
Dcavp_tdes_test.cc31 const EVP_CIPHER *cipher; member
236 const EVP_CIPHER *cipher = ctx->cipher; in TestMCT() local
326 const EVP_CIPHER *cipher = GetCipher(argv[2]); in cavp_tdes_test_main() local
/third_party/openssl/test/
Dbio_enc_test.c38 static int do_bio_cipher(const EVP_CIPHER* cipher, const unsigned char* key, in do_bio_cipher()
173 static int do_test_bio_cipher(const EVP_CIPHER* cipher, int idx) in do_test_bio_cipher()
/third_party/boringssl/src/tool/
Dciphers.cc50 const SSL_CIPHER *cipher = sk_SSL_CIPHER_value(ciphers, i); in Ciphers() local
/third_party/boringssl/src/crypto/pkcs8/
Dp5_pbev2.c146 static int pkcs5_pbe2_cipher_init(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in pkcs5_pbe2_cipher_init()
165 const EVP_CIPHER *cipher, unsigned iterations, in PKCS5_pbe2_encrypt_init()
234 const EVP_CIPHER *cipher = cbs_to_cipher(&enc_obj); in PKCS5_pbe2_decrypt_init() local
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/
Dwpa_common.c352 struct wpa_ptk *ptk, int akmp, int cipher, in wpa_pmk_to_ptk()
554 u8 *ick, size_t *ick_len, int akmp, int cipher, in fils_pmk_to_ptk()
1166 int wpa_cipher_valid_group(int cipher) in wpa_cipher_valid_group()
1174 int wpa_cipher_valid_mgmt_group(int cipher) in wpa_cipher_valid_mgmt_group()
1700 struct wpa_ptk *ptk, u8 *ptk_name, int akmp, int cipher) in wpa_pmk_r1_to_ptk()
1940 const char * wpa_cipher_txt(int cipher) in wpa_cipher_txt()
2231 int wpa_cipher_key_len(int cipher) in wpa_cipher_key_len()
2252 int wpa_cipher_rsc_len(int cipher) in wpa_cipher_rsc_len()
2267 enum wpa_alg wpa_cipher_to_alg(int cipher) in wpa_cipher_to_alg()
2293 int wpa_cipher_valid_pairwise(int cipher) in wpa_cipher_valid_pairwise()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/
Dwpa_common.c352 struct wpa_ptk *ptk, int akmp, int cipher, in wpa_pmk_to_ptk()
554 u8 *ick, size_t *ick_len, int akmp, int cipher, in fils_pmk_to_ptk()
1166 int wpa_cipher_valid_group(int cipher) in wpa_cipher_valid_group()
1174 int wpa_cipher_valid_mgmt_group(int cipher) in wpa_cipher_valid_mgmt_group()
1700 struct wpa_ptk *ptk, u8 *ptk_name, int akmp, int cipher) in wpa_pmk_r1_to_ptk()
1940 const char * wpa_cipher_txt(int cipher) in wpa_cipher_txt()
2231 int wpa_cipher_key_len(int cipher) in wpa_cipher_key_len()
2252 int wpa_cipher_rsc_len(int cipher) in wpa_cipher_rsc_len()
2267 enum wpa_alg wpa_cipher_to_alg(int cipher) in wpa_cipher_to_alg()
2293 int wpa_cipher_valid_pairwise(int cipher) in wpa_cipher_valid_pairwise()
[all …]
/third_party/node/test/parallel/
Dtest-crypto-des3-wrap.js19 const cipher = crypto.createCipheriv('des3-wrap', test.key, test.iv); constant
Dtest-crypto-keygen.js68 function getRegExpForPEM(label, cipher) { argument
79 const pkcs1EncExp = (cipher) => getRegExpForPEM('RSA PRIVATE KEY', cipher); argument
84 const sec1EncExp = (cipher) => getRegExpForPEM('EC PRIVATE KEY', cipher); argument
169 cipher: 'aes-256-cbc', property
202 cipher: 'aes-256-cbc', property
320 cipher: 'aes-128-cbc', property
416 cipher: 'aes-128-cbc', property
448 cipher: 'aes-128-cbc', property
483 cipher: 'aes-128-cbc', property
519 cipher: 'aes-128-cbc', property
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
Daes-wrap.c26 int aes_wrap(const u8 *kek, size_t kek_len, int n, const u8 *plain, u8 *cipher) in aes_wrap()
Daes-unwrap.c26 int aes_unwrap(const u8 *kek, size_t kek_len, int n, const u8 *cipher, in aes_unwrap()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/
Daes-unwrap.c26 int aes_unwrap(const u8 *kek, size_t kek_len, int n, const u8 *cipher, in aes_unwrap()
Daes-wrap.c26 int aes_wrap(const u8 *kek, size_t kek_len, int n, const u8 *plain, u8 *cipher) in aes_wrap()
/third_party/boringssl/src/crypto/cipher_extra/
Dcipher_test.cc152 static void TestOperation(FileTest *t, const EVP_CIPHER *cipher, bool encrypt, in TestOperation()
224 const EVP_CIPHER *cipher = GetCipher(cipher_str); in TestCipher() local
329 const EVP_CIPHER *cipher; in TEST() local
/third_party/node/test/known_issues/
Dtest-crypto-authenticated-stream.js126 cipher: 'aes-128-ccm', property
136 cipher: 'aes-128-ccm', property

123456789