Searched refs:X509Key (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DX509Key.java60 public class X509Key implements PublicKey { class in inherits:PublicKey
72 * @see sun.security.x509.X509Key#setKey(BitArray)
73 * @see sun.security.x509.X509Key#getKey()
96 public X509Key() { } method in class:X509Key
103 private X509Key(AlgorithmId algid, BitArray key) method in class:X509Key
150 * X509Key object is returned.
190 * values using the X509Key member functions, such as <code>parse</code>
225 // Return generic X509Key with opaque key data (see below)
259 X509Key result;
263 if (inst instanceof X509Key) {
[all...]
H A DCertificateX509Key.java37 * This class defines the X509Key attribute for the Certificate.
61 * @param key the X509Key
70 * @param in the DerInputStream to read the X509Key from.
75 key = X509Key.parse(val);
81 * @param in the InputStream to read the X509Key from.
86 key = X509Key.parse(val);
H A DCertAndKeyGen.java168 * <code>X509Key</code>, or null if the public key is of a different type.
173 * <code>X509Key</code>. Accordingly, the return type of this method
176 public X509Key getPublicKey()
178 if (!(publicKey instanceof X509Key)) {
181 return (X509Key)publicKey;
189 * X509Key in some JCA/JCE providers, for example SunPKCS11.
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DDSAPublicKey.java38 import sun.security.x509.X509Key;
56 public class DSAPublicKey extends X509Key
/openjdk7/jdk/src/share/classes/sun/security/rsa/
H A DRSAPublicKeyImpl.java35 import sun.security.x509.X509Key;
48 public final class RSAPublicKeyImpl extends X509Key implements RSAPublicKey {
103 * Parse the key. Called by X509Key.
/openjdk7/jdk/src/share/classes/sun/security/ec/
H A DECPublicKeyImpl.java43 public final class ECPublicKeyImpl extends X509Key implements ECPublicKey {
93 * Parse the key. Called by X509Key.
/openjdk7/jdk/src/share/classes/sun/security/pkcs/
H A DPKCS10.java45 import sun.security.x509.X509Key;
155 subjectPublicKeyInfo = X509Key.parse(seq[0].data.getDerValue());
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DX509CertSelector.java570 subjectPublicKey = X509Key.parse(new DerValue(subjectPublicKeyBytes));

Completed in 70 milliseconds