Searched defs:PKCS8Key (Results 1 - 1 of 1) 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...]

Completed in 257 milliseconds