Home
last modified time | relevance | path

Searched refs:algorithms (Results 1 – 25 of 315) sorted by relevance

12345678910>>...13

/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/
DDefaultSignatureAlgorithmIdentifierFinder.java31 private static Map algorithms = new HashMap(); field in DefaultSignatureAlgorithmIdentifierFinder
54 algorithms.put("MD5WITHRSAENCRYPTION", PKCSObjectIdentifiers.md5WithRSAEncryption);
55 algorithms.put("MD5WITHRSA", PKCSObjectIdentifiers.md5WithRSAEncryption);
56 algorithms.put("SHA1WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha1WithRSAEncryption);
57 algorithms.put("SHA1WITHRSA", PKCSObjectIdentifiers.sha1WithRSAEncryption);
58 algorithms.put("SHA224WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha224WithRSAEncryption);
59 algorithms.put("SHA224WITHRSA", PKCSObjectIdentifiers.sha224WithRSAEncryption);
60 algorithms.put("SHA256WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha256WithRSAEncryption);
61 algorithms.put("SHA256WITHRSA", PKCSObjectIdentifiers.sha256WithRSAEncryption);
62 algorithms.put("SHA384WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha384WithRSAEncryption);
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
DX509Util.java43 private static Hashtable algorithms = new Hashtable(); field in X509Util
53 algorithms.put("MD5WITHRSAENCRYPTION", PKCSObjectIdentifiers.md5WithRSAEncryption);
54 algorithms.put("MD5WITHRSA", PKCSObjectIdentifiers.md5WithRSAEncryption);
55 algorithms.put("SHA1WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha1WithRSAEncryption);
56 algorithms.put("SHA1WITHRSA", PKCSObjectIdentifiers.sha1WithRSAEncryption);
57 algorithms.put("SHA224WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha224WithRSAEncryption);
58 algorithms.put("SHA224WITHRSA", PKCSObjectIdentifiers.sha224WithRSAEncryption);
59 algorithms.put("SHA256WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha256WithRSAEncryption);
60 algorithms.put("SHA256WITHRSA", PKCSObjectIdentifiers.sha256WithRSAEncryption);
61 algorithms.put("SHA384WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha384WithRSAEncryption);
[all …]
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/x509/
DX509Util.java44 private static Hashtable algorithms = new Hashtable(); field in X509Util
54 algorithms.put("MD5WITHRSAENCRYPTION", PKCSObjectIdentifiers.md5WithRSAEncryption);
55 algorithms.put("MD5WITHRSA", PKCSObjectIdentifiers.md5WithRSAEncryption);
56 algorithms.put("SHA1WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha1WithRSAEncryption);
57 algorithms.put("SHA1WITHRSA", PKCSObjectIdentifiers.sha1WithRSAEncryption);
58 algorithms.put("SHA224WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha224WithRSAEncryption);
59 algorithms.put("SHA224WITHRSA", PKCSObjectIdentifiers.sha224WithRSAEncryption);
60 algorithms.put("SHA256WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha256WithRSAEncryption);
61 algorithms.put("SHA256WITHRSA", PKCSObjectIdentifiers.sha256WithRSAEncryption);
62 algorithms.put("SHA384WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha384WithRSAEncryption);
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/
DPKCS10CertificationRequest.java78 private static Hashtable algorithms = new Hashtable(); field in PKCS10CertificationRequest
90 algorithms.put("MD5WITHRSAENCRYPTION", new ASN1ObjectIdentifier("1.2.840.113549.1.1.4"));
91 algorithms.put("MD5WITHRSA", new ASN1ObjectIdentifier("1.2.840.113549.1.1.4"));
92 algorithms.put("RSAWITHMD5", new ASN1ObjectIdentifier("1.2.840.113549.1.1.4"));
93 algorithms.put("SHA1WITHRSAENCRYPTION", new ASN1ObjectIdentifier("1.2.840.113549.1.1.5"));
94 algorithms.put("SHA1WITHRSA", new ASN1ObjectIdentifier("1.2.840.113549.1.1.5"));
95 algorithms.put("SHA224WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha224WithRSAEncryption);
96 algorithms.put("SHA224WITHRSA", PKCSObjectIdentifiers.sha224WithRSAEncryption);
97 algorithms.put("SHA256WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha256WithRSAEncryption);
98 algorithms.put("SHA256WITHRSA", PKCSObjectIdentifiers.sha256WithRSAEncryption);
[all …]
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jce/
DPKCS10CertificationRequest.java80 private static Hashtable algorithms = new Hashtable(); field in PKCS10CertificationRequest
92 algorithms.put("MD5WITHRSAENCRYPTION", new ASN1ObjectIdentifier("1.2.840.113549.1.1.4"));
93 algorithms.put("MD5WITHRSA", new ASN1ObjectIdentifier("1.2.840.113549.1.1.4"));
94 algorithms.put("RSAWITHMD5", new ASN1ObjectIdentifier("1.2.840.113549.1.1.4"));
95 algorithms.put("SHA1WITHRSAENCRYPTION", new ASN1ObjectIdentifier("1.2.840.113549.1.1.5"));
96 algorithms.put("SHA1WITHRSA", new ASN1ObjectIdentifier("1.2.840.113549.1.1.5"));
97 algorithms.put("SHA224WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha224WithRSAEncryption);
98 algorithms.put("SHA224WITHRSA", PKCSObjectIdentifiers.sha224WithRSAEncryption);
99 algorithms.put("SHA256WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha256WithRSAEncryption);
100 algorithms.put("SHA256WITHRSA", PKCSObjectIdentifiers.sha256WithRSAEncryption);
[all …]
/external/conscrypt/common/src/main/java/org/conscrypt/
DOpenSSLContextImpl.java48 private final String[] algorithms; field in OpenSSLContextImpl
63 OpenSSLContextImpl(String[] algorithms) { in OpenSSLContextImpl() argument
64 this.algorithms = algorithms; in OpenSSLContextImpl()
74 this.algorithms = null; in OpenSSLContextImpl()
87 serverSessionContext, algorithms); in OpenSSLContextImpl()
105 kms, tms, sr, clientSessionContext, serverSessionContext, algorithms); in engineInit()
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
DOpenSSLContextImpl.java51 private final String[] algorithms; field in OpenSSLContextImpl
67 OpenSSLContextImpl(String[] algorithms) { in OpenSSLContextImpl() argument
68 this.algorithms = algorithms; in OpenSSLContextImpl()
79 this.algorithms = null; in OpenSSLContextImpl()
94 serverSessionContext, algorithms); in OpenSSLContextImpl()
112 kms, tms, sr, clientSessionContext, serverSessionContext, algorithms); in engineInit()
/external/scapy/scapy/layers/tls/crypto/
Dcipher_block.py18 from cryptography.hazmat.primitives.ciphers import (Cipher, algorithms, modes,
111 pc_cls = algorithms.AES
121 pc_cls = algorithms.Camellia
134 pc_cls = algorithms.TripleDES
152 pc_cls = algorithms.TripleDES
158 pc_cls = algorithms.IDEA
164 pc_cls = algorithms.SEED
194 self.key = algorithms._verify_key_size(self, key)
Dcipher_stream.py16 from cryptography.hazmat.primitives.ciphers import Cipher, algorithms
107 pc_cls = algorithms.ARC4
/external/python/cpython2/Doc/library/
Dhashlib.rst5 :synopsis: Secure hash and message digest algorithms.
21 message digest algorithms. Included are the FIPS secure hash algorithms SHA1,
24 digest are interchangeable. Older algorithms were called message digests. The
34 Some algorithms have known hash collision weaknesses, refer to the "See
46 Constructors for hash algorithms that are always present in this module are
48 :func:`sha512`. Additional algorithms may also be available depending upon the
72 hashes as well as any other algorithms that your OpenSSL library may offer. The
84 .. data:: hashlib.algorithms
86 A tuple providing the names of the hash algorithms guaranteed to be
93 A set containing the names of the hash algorithms guaranteed to be supported
[all …]
/external/toolchain-utils/bestflags/
DREADME5 infrastructure supports plug-in modules that implement algorithms for searching
8 Currently, three different algorithms are built, namely genetic algorithm, hill
10 contains the testing of these algorithms.
/external/scapy/scapy/layers/
Dipsec.py165 algorithms,
172 Cipher = algorithms = modes = None
417 if algorithms:
419 cipher=algorithms.AES,
423 cipher=algorithms.AES,
430 cipher=algorithms.AES,
438 cipher=algorithms.AES,
446 cipher=algorithms.Blowfish,
453 cipher=algorithms.TripleDES,
457 cipher=algorithms.TripleDES,
[all …]
/external/tensorflow/tensorflow/core/kernels/
Dmatmul_op.cc123 std::vector<AlgorithmType>* algorithms, bool use_aututone, Tensor* out) { in launch()
139 std::vector<int64>* algorithms, in GetBlasGemmAlgorithm()
256 std::vector<int64>* algorithms, bool use_autotune, Tensor* out) { in launch()
296 if (use_autotune && compute_type_supported && !algorithms->empty()) { in launch()
302 for (auto profile_algorithm : (*algorithms)) { in launch()
393 if (!use_autotune || !compute_type_supported || algorithms->empty() || in launch()
426 std::vector<int64>* algorithms, in GetBlasGemmAlgorithm()
430 stream->parent()->GetBlasGemmAlgorithms(algorithms); in GetBlasGemmAlgorithm()
/external/grpc-grpc/doc/
Dcompression_cookbook.md18 algorithms. See the discussion [below](#level-vs-algorithms).
32 …ls](https://github.com/grpc/grpc/blob/master/doc/compression.md#compression-levels-and-algorithms))
47 …nt](https://github.com/grpc/grpc/blob/master/doc/compression.md#compression-levels-and-algorithms),
115 specific algorithms (benchmarking, testing).
117 Selection of concrete compression algorithms is performed by adding a
Dcompression.md14 The implementation supports different compression algorithms. A _default
47 header specifying the algorithms it does accept. If an `UNIMPLEMENTED` error
48 status is returned from the server despite having used one of the algorithms
76 Levels map to concrete algorithms and/or their settings (such as "low" mapping
80 initial call. A client doesn't a priori (presently) know which algorithms a
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
Dcudnn_conv_algorithm_picker.cc46 std::vector<AlgorithmDesc> algorithms; in GetAlgorithms() local
51 stream_exec->GetConvolveBackwardFilterAlgorithms(true, &algorithms); in GetAlgorithms()
54 succ = stream_exec->GetConvolveBackwardDataAlgorithms(true, &algorithms); in GetAlgorithms()
58 succ = stream_exec->GetConvolveAlgorithms(true, &algorithms); in GetAlgorithms()
63 return algorithms; in GetAlgorithms()
/external/toybox/toys/lsb/
Dmd5sum.c258 } algorithms[] = { in do_lib_hash() local
271 for (i = 0; i<ARRAY_LEN(algorithms); i++) in do_lib_hash()
272 if (!strcmp(toys.which->name, algorithms[i].name)) break; in do_lib_hash()
273 hash = algorithms+i; in do_lib_hash()
/external/python/cpython3/Doc/library/
Dhashlib.rst5 :synopsis: Secure hash and message digest algorithms.
24 message digest algorithms. Included are the FIPS secure hash algorithms SHA1,
27 "message digest" are interchangeable. Older algorithms were called message
37 Some algorithms have known hash collision weaknesses, refer to the "See
41 .. _hash-algorithms:
43 Hash algorithms
66 Constructors for hash algorithms that are always present in this module are
71 Additional algorithms may also be available depending upon the OpenSSL
106 above listed hashes as well as any other algorithms that your OpenSSL
121 A set containing the names of the hash algorithms guaranteed to be supported
[all …]
/external/skqp/docs/
DSkBlendMode_Overview.bmh16 algorithms limit the output so that all results are also zero to one.
30 #Line # classic color blend algorithms ##
53 algorithms to lighten or darken; sometimes one mode does both, as described by
/external/skia/docs/
DSkBlendMode_Overview.bmh16 algorithms limit the output so that all results are also zero to one.
30 #Line # classic color blend algorithms ##
53 algorithms to lighten or darken; sometimes one mode does both, as described by
/external/scapy/scapy/contrib/
Dmacsec.py28 algorithms,
145 algorithms.AES(self.key),
171 algorithms.AES(self.key),
/external/python/cpython2/Lib/test/
Dtest_hashlib.py55 algorithms = set()
57 algorithms.add(algorithm.lower())
59 for algorithm in algorithms:
108 self.assertEqual(hashlib.algorithms,
/external/eigen/unsupported/Eigen/
DNonLinearOptimization27 * This module provides implementation of two important algorithms in non linear
59 * They guaranty we get the same results as the original algorithms (value for 'x',
78 * Both algorithms can use either the jacobian (provided by the user) or compute
89 * All algorithms are provided using Two APIs :
/external/tensorflow/tensorflow/contrib/fused_conv/kernels/
Dfused_conv2d_bias_activation_op.cc695 std::vector<dnn::AlgorithmDesc> algorithms; in launch() local
699 &algorithms)); in launch()
705 algorithms.erase( in launch()
707 algorithms.begin(), algorithms.end(), in launch()
712 algorithms.end()); in launch()
715 for (auto profile_algorithm : algorithms) { in launch()
/external/tensorflow/tensorflow/core/protobuf/
Dautotuning.proto47 // result buffer content between two algorithms, say, "reference" and "test"
48 // algorithms. The "test" algorithm is the one associated with this

12345678910>>...13