Searched refs:PKCS8Key (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/pkcs/
H A DPKCS8Key.java52 public class PKCS8Key implements PrivateKey { class in inherits:PrivateKey
74 public PKCS8Key() { } method in class:PKCS8Key
81 private PKCS8Key (AlgorithmId algid, byte key []) method in class:PKCS8Key
91 public static PKCS8Key parse (DerValue in) throws IOException {
95 if (key instanceof PKCS8Key)
96 return (PKCS8Key)key;
98 throw new IOException("Provider did not return PKCS8Key");
105 * PKCS8Key object is returned.
153 * values using the PKCS8Key member functions, such as <code>parse</code>
188 // Return generic PKCS8Key wit
[all...]
/openjdk7/jdk/src/share/classes/sun/security/rsa/
H A DRSAPrivateKeyImpl.java35 import sun.security.pkcs.PKCS8Key;
50 public final class RSAPrivateKeyImpl extends PKCS8Key implements RSAPrivateKey {
H A DRSAPrivateCrtKeyImpl.java36 import sun.security.pkcs.PKCS8Key;
52 extends PKCS8Key implements RSAPrivateCrtKey {
180 * Parse the key. Called by PKCS8Key.
/openjdk7/jdk/src/share/classes/sun/security/ec/
H A DECPrivateKeyImpl.java37 import sun.security.pkcs.PKCS8Key;
62 public final class ECPrivateKeyImpl extends PKCS8Key implements ECPrivateKey {
118 * Parse the key. Called by PKCS8Key.
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DDSAPrivateKey.java39 import sun.security.pkcs.PKCS8Key;
56 public final class DSAPrivateKey extends PKCS8Key
H A DKeyProtector.java38 import sun.security.pkcs.PKCS8Key;
332 // The parseKey() method of PKCS8Key parses the key
336 return PKCS8Key.parseKey(new DerValue(plainKey));

Completed in 42 milliseconds