/external/python/cryptography/src/cryptography/hazmat/backends/openssl/ |
D | aead.py | 27 def _aead_setup(backend, cipher_name, key, nonce, tag, tag_len, operation): argument 28 evp_cipher = backend._lib.EVP_get_cipherbyname(cipher_name) 101 cipher_name = _aead_cipher_name(cipher) 103 backend, cipher_name, cipher._key, nonce, None, tag_length, _ENCRYPT 132 cipher_name = _aead_cipher_name(cipher) 134 backend, cipher_name, cipher._key, nonce, tag, tag_length, _DECRYPT
|
D | backend.py | 2221 cipher_name = aead._aead_cipher_name(cipher) 2223 self._lib.EVP_get_cipherbyname(cipher_name) != self._ffi.NULL 2321 cipher_name = self._fmt.format(cipher=cipher, mode=mode).lower() 2322 return backend._lib.EVP_get_cipherbyname(cipher_name.encode("ascii")) 2326 cipher_name = "aes-{0}-xts".format(cipher.key_size // 2) 2327 return backend._lib.EVP_get_cipherbyname(cipher_name.encode("ascii"))
|
/external/boringssl/src/util/fipstools/cavp/ |
D | cavp_aes_test.cc | 207 const std::string cipher_name(argv[2]); in cavp_aes_test_main() local 214 (cipher_name != "aes-128-ecb" && in cavp_aes_test_main() 215 cipher_name != "aes-192-ecb" && in cavp_aes_test_main() 216 cipher_name != "aes-256-ecb"); in cavp_aes_test_main()
|
D | cavp_tdes_test.cc | 325 const std::string cipher_name(argv[2]); in cavp_tdes_test_main() local 331 bool has_iv = cipher_name != "des-ede" && cipher_name != "des-ede3"; in cavp_tdes_test_main()
|
/external/scapy/scapy/layers/tls/crypto/ |
D | suites.py | 48 cipher_name = s[:-(len(hash_name) + 1)] 50 cipher_name += "_TLS13" 51 cipher_alg = _tls_cipher_algs.get(cipher_name) 61 cipher_name, hash_name = s.split("_WITH_") 62 cipher_alg = _tls_cipher_algs.get(cipher_name.rstrip("_EXPORT40")) 63 kx_alg.export = cipher_name.endswith("_EXPORT40")
|
/external/libnl/python/examples/ |
D | wiphy.py | 45 def cipher_name(suite): function 88 print("\t\t* %s" % cipher_name(ciphers[i:i+4]))
|
/external/openssh/ |
D | cipher.h | 72 char *cipher_name(int);
|
D | sshconnect1.c | 638 cipher_name(ssh_cipher_default)); in ssh_kex() 644 cipher_name(options.cipher)); in ssh_kex() 646 debug("Encryption type: %.100s", cipher_name(options.cipher)); in ssh_kex()
|
D | cipher.c | 307 cipher_name(int id) in cipher_name() function
|
D | readconf.c | 2636 printf("Cipher %s\n", cipher_name(o->cipher)); in dump_client_config()
|
/external/pdfium/core/fpdfapi/parser/ |
D | cpdf_security_handler.cpp | 262 ByteString cipher_name = pDefFilter->GetStringFor("CFM"); in LoadCryptInfo() local 263 if (cipher_name == "AESV2" || cipher_name == "AESV3") in LoadCryptInfo()
|
/external/webrtc/webrtc/base/ |
D | opensslstreamadapter.cc | 362 char* cipher_name = SSL_CIPHER_get_rfc_name(ssl_cipher); in SslCipherSuiteToName() local 363 std::string rfc_name = std::string(cipher_name); in SslCipherSuiteToName() 364 OPENSSL_free(cipher_name); in SslCipherSuiteToName()
|
/external/iw/ |
D | info.c | 24 static char *cipher_name(__u32 c) in cipher_name() function 302 cipher_name(ciphers[i])); in print_phy_handler()
|
/external/python/cpython3/Modules/ |
D | _ssl.c | 1939 const char *cipher_name, *cipher_protocol; in cipher_to_tuple() local 1944 cipher_name = SSL_CIPHER_get_name(cipher); in cipher_to_tuple() 1945 if (cipher_name == NULL) { in cipher_to_tuple() 1949 v = PyUnicode_FromString(cipher_name); in cipher_to_tuple() 1982 const char *cipher_name, *cipher_protocol; in cipher_to_dict() local 1993 cipher_name = SSL_CIPHER_get_name(cipher); in cipher_to_dict() 2022 "name", cipher_name, in cipher_to_dict()
|
/external/python/cpython2/Modules/ |
D | _ssl.c | 1534 char *cipher_name; in PySSL_cipher() local 1547 cipher_name = (char *) SSL_CIPHER_get_name(current); in PySSL_cipher() 1548 if (cipher_name == NULL) { in PySSL_cipher() 1552 v = PyString_FromString(cipher_name); in PySSL_cipher()
|