/libcore/ojluni/src/main/java/javax/crypto/ |
EncryptedPrivateKeyInfo.java | 61 private AlgorithmId algid; field in class:EncryptedPrivateKeyInfo 95 this.algid = AlgorithmId.parse(seq[0]); 137 this.algid = AlgorithmId.get(algName); 178 this.algid = AlgorithmId.get(algParams); 208 return this.algid.getName(); 216 return this.algid.getParameters(); 282 c = Cipher.getInstance(algid.getName()); 284 c = Cipher.getInstance(algid.getName(), provider); 286 c.init(Cipher.DECRYPT_MODE, decryptKey, algid.getParameters()); 407 algid.encode(tmp) 437 DerInputStream algid = values[1].toDerInputStream(); local [all...] |
/libcore/ojluni/src/main/java/sun/security/x509/ |
KeyIdentifier.java | 90 AlgorithmId algid = AlgorithmId.parse(algAndKey.data.getDerValue()); local
|
X509Key.java | 66 protected AlgorithmId algid; field in class:X509Key 103 private X509Key(AlgorithmId algid, BitArray key) 105 this.algid = algid; 205 static PublicKey buildX509Key(AlgorithmId algid, BitArray key) 209 * Use the algid and key parameters to produce the ASN.1 encoding 214 encode(x509EncodedKeyStream, algid, key); 220 KeyFactory keyFac = KeyFactory.getInstance(algid.getName()); 243 algid.getName()); 265 result.algid = algid [all...] |
AlgorithmId.java | 67 private ObjectIdentifier algid; field in class:AlgorithmId 95 algid = oid; 105 algid = oid; 112 this.algid = oid; 120 String algidString = algid.toString(); 163 bytes.putOID(algid); 188 algid.equals((Object)SHA_oid) || 189 algid.equals((Object)SHA256_oid) || 190 algid.equals((Object)SHA384_oid) || 191 algid.equals((Object)SHA512_oid) | 369 ObjectIdentifier algid; local [all...] |
/libcore/ojluni/src/main/java/sun/security/pkcs/ |
PKCS8Key.java | 58 protected AlgorithmId algid; field in class:PKCS8Key 81 private PKCS8Key (AlgorithmId algid, byte key []) 83 this.algid = algid; 168 static PrivateKey buildPKCS8Key (AlgorithmId algid, byte[] key) 172 * Use the algid and key parameters to produce the ASN.1 encoding 177 encode(pkcs8EncodedKeyStream, algid, key); 183 KeyFactory keyFac = KeyFactory.getInstance(algid.getName()); 206 algid.getName()); 228 result.algid = algid [all...] |