/external/scapy/scapy/layers/tls/ |
D | tools.py | 34 def _tls_compress(alg, p): argument 46 def _tls_decompress(alg, c): argument 58 def _tls_mac_add(alg, c, write_seq_num): argument 71 def _tls_mac_verify(alg, p, read_seq_num): argument 139 def _tls_encrypt(alg, p): argument 153 def _tls_decrypt(alg, c): argument 165 def _tls_aead_auth_encrypt(alg, p, write_seq_num): argument 186 def _tls_aead_auth_decrypt(alg, c, read_seq_num): argument
|
/external/openssh/ |
D | digest-openssl.c | 45 int alg; member 68 ssh_digest_by_alg(int alg) in ssh_digest_by_alg() 82 int alg; in ssh_digest_alg_by_name() local 92 ssh_digest_alg_name(int alg) in ssh_digest_alg_name() 100 ssh_digest_bytes(int alg) in ssh_digest_bytes() 114 ssh_digest_start(int alg) in ssh_digest_start() 183 ssh_digest_memory(int alg, const void *m, size_t mlen, u_char *d, size_t dlen) in ssh_digest_memory() 201 ssh_digest_buffer(int alg, const struct sshbuf *b, u_char *d, size_t dlen) in ssh_digest_buffer()
|
D | digest-libc.c | 44 int alg; member 124 ssh_digest_by_alg(int alg) in ssh_digest_by_alg() 136 int alg; in ssh_digest_alg_by_name() local 146 ssh_digest_alg_name(int alg) in ssh_digest_alg_name() 154 ssh_digest_bytes(int alg) in ssh_digest_bytes() 170 ssh_digest_start(int alg) in ssh_digest_start() 246 ssh_digest_memory(int alg, const void *m, size_t mlen, u_char *d, size_t dlen) in ssh_digest_memory() 260 ssh_digest_buffer(int alg, const struct sshbuf *b, u_char *d, size_t dlen) in ssh_digest_buffer()
|
D | hmac.c | 28 int alg; member 37 ssh_hmac_bytes(int alg) in ssh_hmac_bytes() 43 ssh_hmac_start(int alg) in ssh_hmac_start()
|
/external/tensorflow/tensorflow/compiler/tests/ |
D | stateful_random_ops_test.py | 68 def testSimple(self, alg): argument 77 def testDefun(self, alg): argument 229 def testUniformIsNotConstant(self, alg, dtype): argument 240 def testNormalIsNotConstant(self, alg, dtype): argument 250 def testUniformIsInRange(self, alg, dtype): argument 263 def testNormalIsFinite(self, alg, dtype): argument 271 def testDistributionOfUniform(self, alg, dtype): argument 294 def testDistributionOfNormal(self, alg, dtype): argument 308 def testTruncatedNormal(self, alg, dtype): argument
|
/external/webrtc/webrtc/base/ |
D | messagedigest.cc | 38 MessageDigest* MessageDigestFactory::Create(const std::string& alg) { in Create() 57 bool IsFips180DigestAlgorithm(const std::string& alg) { in IsFips180DigestAlgorithm() 76 size_t ComputeDigest(const std::string& alg, const void* input, size_t in_len, in ComputeDigest() 91 bool ComputeDigest(const std::string& alg, const std::string& input, in ComputeDigest() 101 std::string ComputeDigest(const std::string& alg, const std::string& input) { in ComputeDigest() 146 size_t ComputeHmac(const std::string& alg, const void* key, size_t key_len, in ComputeHmac() 165 bool ComputeHmac(const std::string& alg, const std::string& key, in ComputeHmac() 175 std::string ComputeHmac(const std::string& alg, const std::string& key, in ComputeHmac()
|
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/ |
D | stateful_random_ops.cc | 39 xla::BitGeneratorTy BitGen(Algorithm alg) { in BitGen() 48 xla::RngOutput StatefulRngUniform(Algorithm alg, xla::XlaOp key, in StatefulRngUniform() 74 xla::RngOutput StatefulRngUniformFullInt(Algorithm alg, xla::XlaOp key, in StatefulRngUniformFullInt() 99 int64 GetMinStateSize(Algorithm alg) { in GetMinStateSize() 106 Status CheckStateShape(Algorithm alg, const TensorShape& shape) { in CheckStateShape() 120 std::pair<xla::XlaOp, xla::XlaOp> StateAndKeyFromVariable(Algorithm alg, in StateAndKeyFromVariable() 142 xla::XlaOp StateAndKeyToVariable(Algorithm alg, xla::XlaOp state, in StateAndKeyToVariable() 166 auto alg = alg_literal.Get<Algorithm>({}); in CompileImpl() local 208 TensorShape shape) -> SamplerReturnType { in Compile() 252 TensorShape shape) -> SamplerReturnType { in Compile() [all …]
|
/external/tensorflow/tensorflow/core/tpu/ |
D | tpu_embedding_optimization_parameters_utils.cc | 26 string GetOptimizationAlgorithmName(OptimizationAlgorithm alg) { in GetOptimizationAlgorithmName() 60 string GetOptimizationAlgorithmFriendlyName(OptimizationAlgorithm alg) { in GetOptimizationAlgorithmFriendlyName() 97 Status GetBaseAuxiliaryParameterCount(OptimizationAlgorithm alg, int* count) { in GetBaseAuxiliaryParameterCount() 144 Status GetGradientAccumulationSupport(OptimizationAlgorithm alg, in GetGradientAccumulationSupport() 180 OptimizationAlgorithm alg, bool use_gradient_accumulation, in GetOptimizationAlgorithmStateVariables() 314 OptimizationAlgorithm alg, bool is_debug_op, in RegisterPerTableLoadOpsForAlgorithmBody() 436 OptimizationAlgorithm alg, bool is_debug_op, in RegisterPerTableRetrieveOpsForAlgorithmBody() 537 Status IsOptimizationAlgorithmInternal(OptimizationAlgorithm alg, in IsOptimizationAlgorithmInternal()
|
/external/tensorflow/tensorflow/python/ops/ |
D | stateful_random_ops.py | 139 def _get_state_size(alg): argument 148 def _check_state_shape(shape, alg): argument 154 def _make_state_from_seed(seed, alg): argument 158 def _convert_alg_to_int(alg): argument 187 def create_rng_state(seed, alg): argument 336 def __init__(self, copy_from=None, state=None, alg=None): argument 390 def from_state(cls, state, alg): argument 413 def from_seed(cls, seed, alg=None): argument 447 def from_non_deterministic_state(cls, alg=None): argument 476 def from_key_counter(cls, key, counter, alg): argument [all …]
|
/external/ltp/lib/ |
D | tst_crypto.c | 68 const struct crypto_user_alg *alg) in tst_crypto_add_alg() 84 const struct crypto_user_alg *alg) in tst_crypto_del_alg()
|
/external/fsverity-utils/ |
D | hash_algs.c | 67 openssl_digest_ctx_create(const struct fsverity_hash_alg *alg, const EVP_MD *md) in openssl_digest_ctx_create() 92 static struct hash_ctx *create_sha256_ctx(const struct fsverity_hash_alg *alg) in create_sha256_ctx() 97 static struct hash_ctx *create_sha512_ctx(const struct fsverity_hash_alg *alg) in create_sha512_ctx()
|
D | hash_algs.h | 19 const struct fsverity_hash_alg *alg; member 39 static inline struct hash_ctx *hash_create(const struct fsverity_hash_alg *alg) in hash_create()
|
/external/tensorflow/tensorflow/core/kernels/ |
D | stateful_random_ops.cc | 79 bool read_alg_from_state, Algorithm alg, int64 output_size, in UpdateVariableAndFill() 122 bool read_alg_from_state, Algorithm alg) { in StatefulRandomCompute() 168 Algorithm alg; in Compute() local 182 Algorithm alg; in Compute() local 219 Algorithm alg; in Compute() local 246 Algorithm alg; in Compute() local
|
/external/boringssl/src/crypto/x509/ |
D | rsa_pss.c | 93 static RSA_PSS_PARAMS *rsa_pss_decode(const X509_ALGOR *alg, in rsa_pss_decode() 157 static const EVP_MD *rsa_algor_to_md(X509_ALGOR *alg) { in rsa_algor_to_md() 170 static const EVP_MD *rsa_mgf1_to_md(X509_ALGOR *alg, X509_ALGOR *maskHash) { in rsa_mgf1_to_md()
|
D | x_algor.c | 126 void X509_ALGOR_set_md(X509_ALGOR *alg, const EVP_MD *md) in X509_ALGOR_set_md()
|
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/dump/ |
D | UnsupportedCompressionAlgorithmException.java | 34 public UnsupportedCompressionAlgorithmException(final String alg) { in UnsupportedCompressionAlgorithmException()
|
/external/wpa_supplicant_8/src/crypto/ |
D | crypto_internal.c | 20 enum crypto_hash_alg alg; member 39 struct crypto_hash * crypto_hash_init(enum crypto_hash_alg alg, const u8 *key, in crypto_hash_init()
|
D | crypto_internal-cipher.c | 18 enum crypto_cipher_alg alg; member 43 struct crypto_cipher * crypto_cipher_init(enum crypto_cipher_alg alg, in crypto_cipher_init()
|
/external/tensorflow/tensorflow/core/ops/ |
D | tpu_embedding_ops.cc | 78 for (tpu::OptimizationAlgorithm alg : tpu::GetOptimizationAlgorithms()) { in RegisterPerTableLoadAndRetrieveOps() local 100 for (tpu::OptimizationAlgorithm alg : tpu::GetOptimizationAlgorithms()) { in RegisterPerTableLoadAndRetrieveOps() local
|
/external/wpa_supplicant_8/src/tls/ |
D | pkcs5.c | 25 } alg; member 48 static int pkcs5_is_oid(struct asn1_oid *oid, unsigned long alg) in pkcs5_is_oid() 58 static int enc_alg_is_oid(struct asn1_oid *oid, unsigned long alg) in enc_alg_is_oid() 67 static int pkcs12_is_pbe_oid(struct asn1_oid *oid, unsigned long alg) in pkcs12_is_pbe_oid()
|
D | tlsv1_client_ocsp.c | 67 static unsigned int ocsp_hash_data(struct asn1_oid *alg, const u8 *data, in ocsp_hash_data() 118 struct x509_algorithm_identifier alg; in tls_process_ocsp_single_response() local 363 struct x509_algorithm_identifier alg; in tls_process_basic_ocsp_response() local
|
/external/ltp/testcases/kernel/crypto/ |
D | crypto_user02.c | 38 struct crypto_user_alg alg = { in run() local
|
/external/wpa_supplicant_8/src/eap_common/ |
D | ikev2_common.c | 56 int ikev2_integ_hash(int alg, const u8 *key, size_t key_len, const u8 *data, in ikev2_integ_hash() 97 int ikev2_prf_hash(int alg, const u8 *key, size_t key_len, in ikev2_prf_hash() 113 int ikev2_prf_plus(int alg, const u8 *key, size_t key_len, in ikev2_prf_plus() 175 int ikev2_encr_encrypt(int alg, const u8 *key, size_t key_len, const u8 *iv, in ikev2_encr_encrypt() 210 int ikev2_encr_decrypt(int alg, const u8 *key, size_t key_len, const u8 *iv, in ikev2_encr_decrypt()
|
/external/boringssl/src/ssl/ |
D | ssl_privkey.cc | 148 const SSL_SIGNATURE_ALGORITHM *alg = get_signature_algorithm(sigalg); in pkey_supports_algorithm() local 179 const SSL_SIGNATURE_ALGORITHM *alg = get_signature_algorithm(sigalg); in setup_ctx() local 301 const SSL_SIGNATURE_ALGORITHM *alg = get_signature_algorithm(sigalg); in ssl_private_key_supports_signature_algorithm() local 478 const SSL_SIGNATURE_ALGORITHM *alg = get_signature_algorithm(sigalg); in SSL_get_signature_algorithm_key_type() local 483 const SSL_SIGNATURE_ALGORITHM *alg = get_signature_algorithm(sigalg); in SSL_get_signature_algorithm_digest() local 491 const SSL_SIGNATURE_ALGORITHM *alg = get_signature_algorithm(sigalg); in SSL_is_signature_algorithm_rsa_pss() local
|
/external/strace/tests/ |
D | netlink_crypto.c | 101 struct crypto_user_alg alg = { in test_crypto_msg_newalg() local
|