Searched refs:KeyRep (Results 1 - 14 of 14) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DDSAPublicKeyImpl.java29 import java.security.KeyRep;
36 * DSAPublicKeyImpl calls writeReplace with KeyRep, and DSAPublicKey
74 return new KeyRep(KeyRep.Type.PUBLIC,
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DDESKey.java28 import java.security.KeyRep;
135 * @return the standard KeyRep object to be serialized
141 return new KeyRep(KeyRep.Type.SECRET,
H A DDESedeKey.java28 import java.security.KeyRep;
136 * @return the standard KeyRep object to be serialized
142 return new KeyRep(KeyRep.Type.SECRET,
H A DPBEKey.java29 import java.security.KeyRep;
131 * @return the standard KeyRep object to be serialized
137 return new KeyRep(KeyRep.Type.SECRET,
H A DDHPrivateKey.java30 import java.security.KeyRep;
341 * @return the standard KeyRep object to be serialized
347 return new KeyRep(KeyRep.Type.PRIVATE,
H A DDHPublicKey.java30 import java.security.KeyRep;
320 * @return the standard KeyRep object to be serialized
326 return new KeyRep(KeyRep.Type.PUBLIC,
H A DPBKDF2KeyImpl.java33 import java.security.KeyRep;
254 * @return the standard KeyRep object to be serialized
260 return new KeyRep(KeyRep.Type.SECRET, getAlgorithm(),
/openjdk7/jdk/src/windows/classes/sun/security/mscapi/
H A DRSAPublicKey.java31 import java.security.KeyRep;
171 return new KeyRep(KeyRep.Type.PUBLIC,
/openjdk7/jdk/src/share/classes/sun/security/ec/
H A DECPublicKeyImpl.java116 return new KeyRep(KeyRep.Type.PUBLIC,
/openjdk7/jdk/src/share/classes/java/security/
H A DKeyRep.java57 public class KeyRep implements Serializable { class in inherits:Serializable
130 public KeyRep(Type type, String algorithm, method in class:KeyRep
/openjdk7/jdk/src/share/classes/sun/security/rsa/
H A DRSAPublicKeyImpl.java130 return new KeyRep(KeyRep.Type.PUBLIC,
/openjdk7/jdk/src/share/classes/sun/security/pkcs/
H A DPKCS8Key.java32 import java.security.KeyRep;
371 return new KeyRep(KeyRep.Type.PRIVATE,
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11Key.java185 KeyRep.Type type;
188 type = KeyRep.Type.PRIVATE;
190 type = KeyRep.Type.PUBLIC;
192 type = KeyRep.Type.SECRET;
198 return new KeyRep(type, getAlgorithm(), format, getEncoded());
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DX509Key.java34 import java.security.KeyRep;

Completed in 41 milliseconds