Searched refs:DSAPrivateKey (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/classes/java/security/interfaces/
H A DDSAPrivateKey.java41 public interface DSAPrivateKey extends DSAKey, java.security.PrivateKey { interface in inherits:DSAKey,java.security.PrivateKey
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DDSAPrivateKey.java56 public final class DSAPrivateKey extends PKCS8Key class in inherits:PKCS8Key,java.security.interfaces.DSAPrivateKey,Serializable
57 implements java.security.interfaces.DSAPrivateKey, Serializable {
68 public DSAPrivateKey() { method in class:DSAPrivateKey
74 public DSAPrivateKey(BigInteger x, BigInteger p, method in class:DSAPrivateKey
95 public DSAPrivateKey(byte[] encoded) throws InvalidKeyException { method in class:DSAPrivateKey
H A DDSAKeyFactory.java142 return new DSAPrivateKey(dsaPrivKeySpec.getX(),
148 return new DSAPrivateKey
210 } else if (key instanceof java.security.interfaces.DSAPrivateKey) {
219 java.security.interfaces.DSAPrivateKey dsaPrivKey
220 = (java.security.interfaces.DSAPrivateKey)key;
271 } else if (key instanceof java.security.interfaces.DSAPrivateKey) {
273 if (key instanceof sun.security.provider.DSAPrivateKey) {
H A DDSAKeyPairGenerator.java189 DSAPrivateKey priv = new DSAPrivateKey(x, p, q, g);
H A DDSA.java62 * @see DSAPrivateKey
216 if (!(privateKey instanceof java.security.interfaces.DSAPrivateKey)) {
220 java.security.interfaces.DSAPrivateKey priv =
221 (java.security.interfaces.DSAPrivateKey)privateKey;
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11DSAKeyFactory.java78 if (key instanceof DSAPrivateKey) {
79 DSAPrivateKey dsaKey = (DSAPrivateKey)key;
90 key = new sun.security.provider.DSAPrivateKey(encoded);
94 + "of DSAPrivateKey or have PKCS#8 encoding");
140 PrivateKey key = new sun.security.provider.DSAPrivateKey(encoded);
H A DP11KeyStore.java1071 !(key instanceof DSAPrivateKey) &&
1695 } else if (key instanceof DSAPrivateKey) {
1697 DSAPrivateKey dsaKey = (DSAPrivateKey)key;
H A DP11Key.java56 * (e.g. DSAPrivateKey) for compatibility with existing applications.
744 implements DSAPrivateKey {
780 Key key = new sun.security.provider.DSAPrivateKey
H A DSunPKCS11.java1024 || (key instanceof DSAPrivateKey)

Completed in 47 milliseconds