/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/ |
D | DefaultSignatureAlgorithmIdentifierFinder.java | 29 private static Map algorithms = new HashMap(); field in DefaultSignatureAlgorithmIdentifierFinder 50 algorithms.put("MD5WITHRSAENCRYPTION", PKCSObjectIdentifiers.md5WithRSAEncryption); 51 algorithms.put("MD5WITHRSA", PKCSObjectIdentifiers.md5WithRSAEncryption); 52 algorithms.put("SHA1WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha1WithRSAEncryption); 53 algorithms.put("SHA1WITHRSA", PKCSObjectIdentifiers.sha1WithRSAEncryption); 54 algorithms.put("SHA224WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha224WithRSAEncryption); 55 algorithms.put("SHA224WITHRSA", PKCSObjectIdentifiers.sha224WithRSAEncryption); 56 algorithms.put("SHA256WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha256WithRSAEncryption); 57 algorithms.put("SHA256WITHRSA", PKCSObjectIdentifiers.sha256WithRSAEncryption); 58 algorithms.put("SHA384WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha384WithRSAEncryption); [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/ |
D | X509Util.java | 45 private static Hashtable algorithms = new Hashtable(); field in X509Util 55 algorithms.put("MD5WITHRSAENCRYPTION", PKCSObjectIdentifiers.md5WithRSAEncryption); 56 algorithms.put("MD5WITHRSA", PKCSObjectIdentifiers.md5WithRSAEncryption); 57 algorithms.put("SHA1WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha1WithRSAEncryption); 58 algorithms.put("SHA1WITHRSA", PKCSObjectIdentifiers.sha1WithRSAEncryption); 59 algorithms.put("SHA224WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha224WithRSAEncryption); 60 algorithms.put("SHA224WITHRSA", PKCSObjectIdentifiers.sha224WithRSAEncryption); 61 algorithms.put("SHA256WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha256WithRSAEncryption); 62 algorithms.put("SHA256WITHRSA", PKCSObjectIdentifiers.sha256WithRSAEncryption); 63 algorithms.put("SHA384WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha384WithRSAEncryption); [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/ |
D | PKCS10CertificationRequest.java | 80 private static Hashtable algorithms = new Hashtable(); field in PKCS10CertificationRequest 93 algorithms.put("MD5WITHRSAENCRYPTION", new ASN1ObjectIdentifier("1.2.840.113549.1.1.4")); 94 algorithms.put("MD5WITHRSA", new ASN1ObjectIdentifier("1.2.840.113549.1.1.4")); 95 algorithms.put("RSAWITHMD5", new ASN1ObjectIdentifier("1.2.840.113549.1.1.4")); 96 algorithms.put("SHA1WITHRSAENCRYPTION", new ASN1ObjectIdentifier("1.2.840.113549.1.1.5")); 97 algorithms.put("SHA1WITHRSA", new ASN1ObjectIdentifier("1.2.840.113549.1.1.5")); 98 algorithms.put("SHA224WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha224WithRSAEncryption); 99 algorithms.put("SHA224WITHRSA", PKCSObjectIdentifiers.sha224WithRSAEncryption); 100 algorithms.put("SHA256WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha256WithRSAEncryption); 101 algorithms.put("SHA256WITHRSA", PKCSObjectIdentifiers.sha256WithRSAEncryption); [all …]
|
/external/conscrypt/src/main/java/org/conscrypt/ |
D | OpenSSLContextImpl.java | 43 private final String[] algorithms; field in OpenSSLContextImpl 58 protected OpenSSLContextImpl(String[] algorithms) { in OpenSSLContextImpl() argument 59 this.algorithms = algorithms; in OpenSSLContextImpl() 72 this.algorithms = null; in OpenSSLContextImpl() 83 serverSessionContext, algorithms); in OpenSSLContextImpl() 101 serverSessionContext, algorithms); in engineInit()
|
/external/bouncycastle/patches/ |
D | bcpkix.patch | 835 - algorithms.put("MD2WITHRSAENCRYPTION", PKCSObjectIdentifiers.md2WithRSAEncryption); 836 - algorithms.put("MD2WITHRSA", PKCSObjectIdentifiers.md2WithRSAEncryption); 838 + // algorithms.put("MD2WITHRSAENCRYPTION", PKCSObjectIdentifiers.md2WithRSAEncryption); 839 + // algorithms.put("MD2WITHRSA", PKCSObjectIdentifiers.md2WithRSAEncryption); 841 algorithms.put("MD5WITHRSAENCRYPTION", PKCSObjectIdentifiers.md5WithRSAEncryption); 842 algorithms.put("MD5WITHRSA", PKCSObjectIdentifiers.md5WithRSAEncryption); 843 algorithms.put("SHA1WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha1WithRSAEncryption); 845 algorithms.put("SHA256WITHRSAANDMGF1", PKCSObjectIdentifiers.id_RSASSA_PSS); 846 algorithms.put("SHA384WITHRSAANDMGF1", PKCSObjectIdentifiers.id_RSASSA_PSS); 847 algorithms.put("SHA512WITHRSAANDMGF1", PKCSObjectIdentifiers.id_RSASSA_PSS); [all …]
|
D | README | 5 The main differences involve removing algorithms not included in the 9 supported algorithms and Android's. Some notable omissions versus the 41 - removing algorithms not in our bcprov (MD2, MD4, SHA224, RIPEMD, GOST)
|
D | bcprov.patch | 2331 - if (!algorithms.containsKey(oidAlgorithm)) 2336 - int keySize = ((Integer)algorithms.get(oidAlgorithm)).intValue(); 2349 + // if (!algorithms.containsKey(oidAlgorithm)) 2354 + // int keySize = ((Integer)algorithms.get(oidAlgorithm)).intValue(); 2366 if (algorithms.containsKey(oidAlgorithm)) 7750 - algorithms.put("MD2WITHRSAENCRYPTION", new ASN1ObjectIdentifier("1.2.840.113549.1.1.2")); 7751 - algorithms.put("MD2WITHRSA", new ASN1ObjectIdentifier("1.2.840.113549.1.1.2")); 7754 + // algorithms.put("MD2WITHRSAENCRYPTION", new ASN1ObjectIdentifier("1.2.840.113549.1.1.2")… 7755 + // algorithms.put("MD2WITHRSA", new ASN1ObjectIdentifier("1.2.840.113549.1.1.2")); 7757 algorithms.put("MD5WITHRSAENCRYPTION", new ASN1ObjectIdentifier("1.2.840.113549.1.1.4")); [all …]
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/ |
D | changelog | 14 * Updated database of pre-defined CRC algorithms 20 * Added XOR out feature to allow creation of standard CRC algorithms 21 * Added a database of pre-defined CRC algorithms
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/docs/source/ |
D | crcmod.predefined.rst | 2 :mod:`crcmod.predefined` -- CRC calculation using predefined algorithms 6 :synopsis: CRC calculation using predefined algorithms 11 for calculating CRCs of byte strings using common predefined CRC algorithms. 17 Predefined CRC algorithms 20 The :mod:`crcmod.predefined` module offers the following predefined algorithms:
|
D | crcmod.rst | 11 for calculating CRCs of byte strings using common CRC algorithms. 46 :keyword:`True` because the bit reversed algorithms are more efficient. 49 CRC algorithms. Defaults to zero. 77 The CRC-32 uses a "reversed" algorithm, used for many common CRC algorithms. 131 :keyword:`True` because the bit reversed algorithms are more efficient. 134 CRC algorithms. Defaults to zero.
|
D | intro.rst | 11 number of resources on the web that give a good explanation of the algorithms. 30 common CRC algorithms are predefined in :mod:`crcmod.predefined`. If someone 140 Secure hash and message digest algorithms.
|
/external/tpm2/ |
D | CryptSelfTest.c | 104 TPM_ALG_ID alg = toTest->algorithms[i]; in CryptIncrementalSelfTest() 121 toDoList->algorithms[toDoList->count++] = alg; in CryptIncrementalSelfTest()
|
/external/eigen/doc/ |
D | TopicMultithreading.dox | 7 Some Eigen's algorithms can exploit the multiple cores present in your hardware. To this end, it is… 24 Currently, the following algorithms can make use of multi-threading:
|
/external/eigen/unsupported/Eigen/ |
D | NonLinearOptimization | 27 * 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 :
|
D | BVH | 23 * \brief This module provides generic bounding volume hierarchy algorithms 32 …* of the two basic algorithms over a BVH: intersection of a query object against all objects in th… 53 …* This implementation decouples the basic algorithms both from the type of hierarchy (and the type… 57 …* To be used in the algorithms, a hierarchy must implement the following traversal mechanism (see …
|
/external/eigen/ |
D | eigen3.pc.in | 2 Description: A C++ template library for linear algebra: vectors, matrices, and related algorithms
|
D | README.android | 5 numerical solvers, and related algorithms.
|
/external/ceres-solver/docs/source/ |
D | features.rst | 42 optimization algorithms will suit different needs. To this end, 43 Ceres Solver comes with a variety of optimization algorithms, some 59 line search based algorithms. This includes a number of variants
|
/external/openssh/ |
D | PROTOCOL | 36 1.3. transport: New public key algorithms "ssh-rsa-cert-v00@openssh.com", 42 OpenSSH introduces new public key algorithms to support certificate 54 1.5 transport: Protocol 2 Encrypt-then-MAC MAC algorithms 56 OpenSSH supports MAC algorithms, whose names contain "-etm", that 65 Specifically, the "-etm" MAC algorithms modify the transport protocol 88 AES-GCM is only negotiated as the cipher algorithms 91 the exchanged MAC algorithms are ignored and there doesn't have to be 326 key algorithms to better ones. It also supports graceful key rotation:
|
/external/selinux/sepolgen/ |
D | HACKING | 34 Objects and algorithms for representing access and sets of access in 43 includes algorithms to turn the raw output of the parser into access
|
/external/wpa_supplicant_8/hostapd/ |
D | hlr_auc_gw.milenage_db | 1 # Parameters for Milenage (Example algorithms for AKA).
|
/external/autotest/client/site_tests/graphics_SanAngeles/ |
D | control.hwqual | 23 also uses objects generated using procedural algorithms.
|
D | control | 25 also uses objects generated using procedural algorithms.
|
/external/jmonkeyengine/engine/src/core-data/Common/MatDefs/Light/ |
D | Deferred.j3md | 5 // Use more efficent algorithms to improve performance
|
/external/libjpeg-turbo/ |
D | README-turbo.txt | 284 point DCT/IDCT algorithms are mainly a legacy feature, and they do not 285 produce significantly more accuracy than the slow integer algorithms (to put 286 numbers on this, the typical difference in PNSR between the two algorithms 289 -- If the floating point algorithms in libjpeg-turbo are not implemented using 294 still using the same algorithms as libjpeg v6b, so there are several specific 299 implements those scaling algorithms differently than libjpeg v6b does, and 303 with its DCT/IDCT scaling algorithms rather than with a separate
|