/third_party/openssl/test/ |
H A D | dtls_mtu_test.c | 168 const char *cipher_name = SSL_CIPHER_get_name(cipher); in run_mtu_tests() local 171 if (strncmp(cipher_name, "PSK-", 4) != 0) in run_mtu_tests() 174 if (!TEST_int_gt(ret = mtu_test(ctx, cipher_name, 0), 0)) in run_mtu_tests() 176 TEST_info("%s OK", cipher_name); in run_mtu_tests() 181 if (!TEST_int_gt(ret = mtu_test(ctx, cipher_name, 1), 0)) in run_mtu_tests() 183 TEST_info("%s without EtM OK", cipher_name); in run_mtu_tests()
|
/third_party/openssl/demos/mac/ |
H A D | cmac-aes256.c | 75 char cipher_name[] = "aes256"; in main() local 98 *p++ = OSSL_PARAM_construct_utf8_string(OSSL_MAC_PARAM_CIPHER, cipher_name, in main() 99 sizeof(cipher_name)); in main()
|
/third_party/node/deps/openssl/openssl/crypto/encode_decode/ |
H A D | encoder_pkey.c | 26 const char *cipher_name, in DEFINE_STACK_OF() 33 (void *)cipher_name, 0); in DEFINE_STACK_OF()
|
/third_party/openssl/crypto/encode_decode/ |
H A D | encoder_pkey.c | 26 const char *cipher_name, in DEFINE_STACK_OF() 33 (void *)cipher_name, 0); in DEFINE_STACK_OF()
|
/third_party/node/src/quic/ |
H A D | tlscontext.h | 125 v8::MaybeLocal<v8::Value> cipher_name(Environment* env) const;
|
H A D | tlscontext.cc | 511 MaybeLocal<Value> TLSContext::cipher_name(Environment* env) const { in cipher_name() function in node::quic::TLSContext
|
/third_party/node/deps/openssl/openssl/include/openssl/ |
H A D | encoder.h | 67 const char *cipher_name,
|
/third_party/openssl/include/openssl/ |
H A D | encoder.h | 67 const char *cipher_name,
|
/third_party/mbedtls/include/mbedtls/ |
H A D | cipher.h | 389 * \param cipher_name Name of the cipher to search for. This must not be 393 * given \p cipher_name. 396 const mbedtls_cipher_info_t *mbedtls_cipher_info_from_string(const char *cipher_name);
|
/third_party/mbedtls/library/ |
H A D | cipher.c | 100 const char *cipher_name) in mbedtls_cipher_info_from_string() 104 if (NULL == cipher_name) { in mbedtls_cipher_info_from_string() 109 if (!strcmp(def->info->name, cipher_name)) { in mbedtls_cipher_info_from_string() 99 mbedtls_cipher_info_from_string( const char *cipher_name) mbedtls_cipher_info_from_string() argument
|
/third_party/node/deps/openssl/openssl/crypto/evp/ |
H A D | p_lib.c | 615 const char *cipher_name, in new_cmac_key_int() 629 cipher_name = EVP_CIPHER_get0_name(cipher); in new_cmac_key_int() 631 if (cipher_name == NULL) { in new_cmac_key_int() 648 (char *)cipher_name, 0); in new_cmac_key_int() 614 new_cmac_key_int(const unsigned char *priv, size_t len, const char *cipher_name, const EVP_CIPHER *cipher, OSSL_LIB_CTX *libctx, const char *propq, ENGINE *e) new_cmac_key_int() argument
|
/third_party/openssl/crypto/evp/ |
H A D | p_lib.c | 615 const char *cipher_name, in new_cmac_key_int() 629 cipher_name = EVP_CIPHER_get0_name(cipher); in new_cmac_key_int() 631 if (cipher_name == NULL) { in new_cmac_key_int() 648 (char *)cipher_name, 0); in new_cmac_key_int() 614 new_cmac_key_int(const unsigned char *priv, size_t len, const char *cipher_name, const EVP_CIPHER *cipher, OSSL_LIB_CTX *libctx, const char *propq, ENGINE *e) new_cmac_key_int() argument
|
/third_party/python/Modules/ |
H A D | _ssl.c | 1916 const char *cipher_name, *cipher_protocol; in cipher_to_tuple() local 1921 cipher_name = SSL_CIPHER_get_name(cipher); in cipher_to_tuple() 1922 if (cipher_name == NULL) { in cipher_to_tuple() 1926 v = PyUnicode_FromString(cipher_name); in cipher_to_tuple() 1958 const char *cipher_name, *cipher_protocol; in cipher_to_dict() local 1967 cipher_name = SSL_CIPHER_get_name(cipher); in cipher_to_dict() 1992 "name", cipher_name, in cipher_to_dict()
|
/third_party/node/src/crypto/ |
H A D | crypto_keys.cc | 688 Utf8Value cipher_name(env->isolate(), args[*offset]); in GetPrivateKeyEncodingFromJs() 689 result.cipher_ = EVP_get_cipherbyname(*cipher_name); in GetPrivateKeyEncodingFromJs()
|
/third_party/rust/crates/rust-openssl/openssl/src/ssl/test/ |
H A D | mod.rs | 1479 super::cipher_name("TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384"), in openssl_cipher_name() 1483 assert_eq!(super::cipher_name("asdf"), "(NONE)"); in openssl_cipher_name()
|
/third_party/rust/crates/rust-openssl/openssl/src/ssl/ |
H A D | mod.rs | 124 pub fn cipher_name(std_name: &str) -> &'static str { in cipher_name() functions
|