/dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/ |
JCEDigestUtil.java | 30 private static Map oids = new HashMap(); field in class:JCEDigestUtil 57 oids.put("MD5", PKCSObjectIdentifiers.md5); 58 oids.put(PKCSObjectIdentifiers.md5.getId(), PKCSObjectIdentifiers.md5); 60 oids.put("SHA1", OIWObjectIdentifiers.idSHA1); 61 oids.put("SHA-1", OIWObjectIdentifiers.idSHA1); 62 oids.put(OIWObjectIdentifiers.idSHA1.getId(), OIWObjectIdentifiers.idSHA1); 64 oids.put("SHA224", NISTObjectIdentifiers.id_sha224); 65 oids.put("SHA-224", NISTObjectIdentifiers.id_sha224); 66 oids.put(NISTObjectIdentifiers.id_sha224.getId(), NISTObjectIdentifiers.id_sha224); 68 oids.put("SHA256", NISTObjectIdentifiers.id_sha256) [all...] |
X509CRLEntryObject.java | 127 Enumeration e = extensions.oids(); 225 Enumeration e = extensions.oids();
|
X509CertificateObject.java | 414 Enumeration e = extensions.oids(); 488 Enumeration e = extensions.oids(); 516 Enumeration e = extensions.oids(); 655 Enumeration e = extensions.oids();
|
/dalvik/libcore/security/src/main/java/org/bouncycastle/jce/ |
PKCS10CertificationRequest.java | 69 private static Hashtable oids = new Hashtable(); field in class:PKCS10CertificationRequest 113 oids.put(new DERObjectIdentifier("1.2.840.113549.1.1.5"), "SHA1WITHRSA"); 114 oids.put(PKCSObjectIdentifiers.sha224WithRSAEncryption, "SHA224WITHRSA"); 115 oids.put(PKCSObjectIdentifiers.sha256WithRSAEncryption, "SHA256WITHRSA"); 116 oids.put(PKCSObjectIdentifiers.sha384WithRSAEncryption, "SHA384WITHRSA"); 117 oids.put(PKCSObjectIdentifiers.sha512WithRSAEncryption, "SHA512WITHRSA"); 118 oids.put(CryptoProObjectIdentifiers.gostR3411_94_with_gostR3410_94, "GOST3411WITHGOST3410"); 119 //oids.put(CryptoProObjectIdentifiers.gostR3411_94_with_gostR3410_2001, "GOST3411WITHECGOST3410"); 121 oids.put(new DERObjectIdentifier("1.2.840.113549.1.1.4"), "MD5WITHRSA"); 124 // oids.put(new DERObjectIdentifier("1.2.840.113549.1.1.2"), "MD2WITHRSA") [all...] |
X509Principal.java | 76 * constructor from a vector of attribute values and a vector of OIDs. 79 Vector oids, 82 super(oids, values); 113 * yielding a DERObjectIdentifier, other than that OID. and numeric oids
|
/dalvik/libcore/security/src/main/java/java/security/cert/ |
X509Extension.java | 28 * Returns the set of OIDs of the extension(s) marked as CRITICAL, that this 31 * @return the set of extension OIDs marked as CRITIAL, an empty set if none 49 * Returns the set of OIDs of the extension(s) marked as NON-CRITICAL, that 52 * @return the set of extension OIDs marked as NON-CRITIAL, an empty set if
|
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/x509/ |
PolicyMappings.java | 43 * <code>String</code> oids 44 * to other <code>String</code> oids.
|
X509Name.java | 212 * look up table translating string values into their OIDS - 218 * look up table translating common symbols into their OIDS. 415 * construction process. The ordering vector should contain the OIDs 430 * construction process. The ordering vector should contain the OIDs 486 * Takes two vectors one of the oids and the other of the values. 489 Vector oids, 492 this(oids, values, new X509DefaultEntryConverter()); 496 * Takes two vectors one of the oids and the other of the values. 502 Vector oids, 508 if (oids.size() != values.size() [all...] |
/external/openssl/crypto/objects/ |
objects.pl | 219 $oids = join('L,',@a) . "L"; 220 if ($oids ne "L") 222 $oids = $pref_oid . $pref_sep . $oids; 226 $oids = $pref_oid; 228 return($oids);
|
objects.txt | 14 # HMAC OIDs 89 # SECG curve OIDs from "SEC 2: Recommended Elliptic Curve Domain Parameters" 92 # SECG prime curves OIDs 110 # SECG characteristic two curves OIDs 130 # WAP/TLS curve OIDs (http://www.wapforum.org/) 831 # What the hell are these OIDs, really? 864 # There are no OIDs for these modes... 881 # OIDs for SHA224, SHA256, SHA385 and SHA512, according to x9.84. 888 # OIDs for dsa-with-sha224 and dsa-with-sha256 [all...] |
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/ |
OIDDatabase.java | 31 private Set<DBEntry> oids = new HashSet<DBEntry>(); field in class:OIDDatabase 102 oids.add(oidValue); 123 Iterator<DBEntry> it = this.oids.iterator();
|
/external/openssl/crypto/ocsp/ |
ocsp_ext.c | 459 X509_EXTENSION *OCSP_accept_responses_new(char **oids) 467 while (oids && *oids) 469 if ((nid=OBJ_txt2nid(*oids))!=NID_undef&&(o=OBJ_nid2obj(nid))) 471 oids++; 507 /* per ACCESS_DESCRIPTION parameter are oids, of which there are currently
|
/external/wpa_supplicant_6/wpa_supplicant/src/drivers/ |
driver_ralink.h | 16 // Ralink defined OIDs 27 // IEEE 802.11 OIDs & Ralink defined OIDs ******
|
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/asn1/ |
InformationObjectSet.java | 63 // check wrong static initialization: no duplicate OIDs
|
/dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
OpenSSLMessageDigest.java | 67 // and OIDs.
|
OpenSSLMessageDigestJDK.java | 45 // and OIDs.
|
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/ |
Extensions.java | 56 // Supported critical extensions oids: 131 // Makes the separated lists with oids of critical 224 * @return the list with string representations of KeyPurposeId's OIDs
|
ExtendedKeyUsage.java | 64 * Returns the list of string representation of OIDs corresponding
|
PolicyInformation.java | 49 * with OIDs.
|
/external/dropbear/libtomcrypt/src/pk/rsa/ |
rsa_sign_hash.c | 86 /* not all hashes have OIDs... so sad */
|
/hardware/ti/wlan/wl1271/utils/ |
osDot11.h | 628 /* propritary OIDs used by FUNK supplicant for WPA Mixed mode support*/ 629 /* WPA2 MIxed mode OIDs */ 639 /* IEEE 802.11 OIDs*/ 680 /* AnyWPA mode flags used in propritary FUNK suplicant OIDs*/
|
/system/wlan/ti/sta_dk_4_0_4_32/common/inc/ |
osDot11.h | 714 /* propritary OIDs used by FUNK supplicant for WPA Mixed mode support*/ 715 /* WPA2 MIxed mode OIDs */ 725 /* IEEE 802.11 OIDs*/ 765 /* AnyWPA mode flags used in propritary FUNK suplicant OIDs*/
|
/system/wlan/ti/wilink_6_1/utils/ |
osDot11.h | 626 /* propritary OIDs used by FUNK supplicant for WPA Mixed mode support*/ 627 /* WPA2 MIxed mode OIDs */ 637 /* IEEE 802.11 OIDs*/ 678 /* AnyWPA mode flags used in propritary FUNK suplicant OIDs*/
|
/external/openssl/crypto/x509/ |
x509_req.c | 157 * extensions in a certificate request. There are at least two OIDs that are 214 /* Add a STACK_OF extensions to a certificate request: allow alternative OIDs
|
/dalvik/libcore/auth/src/main/java/org/apache/harmony/auth/internal/nls/ |
messages.properties | 31 auth.0D=Null oids were provided
|