Searched defs:algid (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DPrivateKeyInfo.java54 private AlgorithmId algid; field in class:PrivateKeyInfo
76 this.algid = AlgorithmId.parse(val.data.getDerValue());
88 return this.algid;
H A DEncryptedPrivateKeyInfo.java47 private AlgorithmId algid; field in class:EncryptedPrivateKeyInfo
71 this.algid = AlgorithmId.parse(seq[0]);
87 EncryptedPrivateKeyInfo(AlgorithmId algid, byte[] encryptedData) { argument
88 this.algid = algid;
97 return this.algid;
119 algid.encode(tmp);
/openjdk7/jdk/src/share/classes/sun/security/pkcs/
H A DEncryptedPrivateKeyInfo.java50 private AlgorithmId algid; field in class:EncryptedPrivateKeyInfo
80 this.algid = AlgorithmId.parse(seq[0]);
96 public EncryptedPrivateKeyInfo(AlgorithmId algid, byte[] encryptedData) { argument
97 this.algid = algid;
105 return this.algid;
127 algid.encode(tmp);
H A DPKCS8Key.java58 protected AlgorithmId algid; field in class:PKCS8Key
81 private PKCS8Key (AlgorithmId algid, byte key []) argument
83 this.algid = algid;
168 static PrivateKey buildPKCS8Key (AlgorithmId algid, byte[] key) argument
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
397 encode(DerOutputStream out, AlgorithmId algid, byte[] key) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DEncryptedPrivateKeyInfo.java61 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
[all...]
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DX509Key.java66 protected AlgorithmId algid; field in class:X509Key
103 private X509Key(AlgorithmId algid, BitArray key) argument
105 this.algid = algid;
205 static PublicKey buildX509Key(AlgorithmId algid, BitArray key) argument
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
470 encode(DerOutputStream out, AlgorithmId algid, BitArray key) argument
[all...]
H A DAlgorithmId.java66 private ObjectIdentifier algid; field in class:AlgorithmId
94 algid = oid;
104 algid = oid;
111 this.algid = oid;
119 String algidString = algid.toString();
162 bytes.putOID(algid);
187 algid.equals((Object)SHA_oid) ||
188 algid.equals((Object)SHA256_oid) ||
189 algid.equals((Object)SHA384_oid) ||
190 algid
[all...]

Completed in 33 milliseconds