Searched refs:PrivateKey (Results 101 - 125 of 128) sorted by relevance

123456

/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/RSA/
H A DTestOAEP_KAT.java109 PrivateKey privKey = kf.generatePrivate(privSpec);
H A DTestRSA.java184 PrivateKey privateKey = kf.generatePrivate(privSpec);
/openjdk7/jdk/test/sun/security/provider/DSA/
H A DTestDSA.java111 PrivateKey privateKey = kf.generatePrivate(privSpec);
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11KeyPairGenerator.java319 PrivateKey privateKey = P11Key.privateKey
H A DP11KeyAgreement.java82 if (key instanceof PrivateKey == false) {
84 ("Key must be instance of PrivateKey");
173 ("PublicKey DH parameters must match PrivateKey DH parameters");
H A DP11RSACipher.java540 private static final PrivateKey constructPrivateKey(byte[] encodedKey,
H A DP11Key.java58 * only implements PrivateKey (or SecretKey). Whether the components of a
325 static PrivateKey privateKey(Session session, long keyID, String algorithm,
378 implements PrivateKey {
H A DP11Signature.java373 protected void engineInitSign(PrivateKey privateKey)
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DRSAClientKeyExchange.java127 int messageSize, PrivateKey privateKey) throws IOException {
H A DHandshakeMessage.java590 RSA_ServerKeyExchange(PublicKey ephemeralKey, PrivateKey privateKey,
717 DH_ServerKeyExchange(DHCrypt obj, PrivateKey key, byte clntNonce[],
984 ECDH_ServerKeyExchange(ECDHCrypt obj, PrivateKey privateKey,
1541 HandshakeHash handshakeHash, PrivateKey privateKey,
H A DServerHandshaker.java64 private PrivateKey privateKey;
76 private PrivateKey tempPrivateKey;
1235 PrivateKey tempPrivateKey = km.getPrivateKey(alias);
H A DSSLContextImpl.java1062 public PrivateKey getPrivateKey(String alias) {
1159 public PrivateKey getPrivateKey(String alias) {
/openjdk7/jdk/src/share/classes/com/sun/net/ssl/
H A DSSLSecurity.java589 public PrivateKey getPrivateKey(String alias) {
656 public PrivateKey getPrivateKey(String alias) {
/openjdk7/jdk/src/share/classes/sun/security/tools/
H A DKeyTool.java35 import java.security.PrivateKey;
1183 PrivateKey privateKey =
1184 (PrivateKey)recoverKey(alias, storePass, keyPass).fst;
1273 PrivateKey privateKey =
1274 (PrivateKey)recoverKey(alias, storePass, keyPass).fst;
1315 PrivateKey privKey = (PrivateKey)objs.fst;
1548 PrivateKey privKey = keypair.getPrivateKey();
2443 PrivateKey privKey = (PrivateKey)obj
[all...]
H A DJarSigner.java117 PrivateKey privateKey; // private key
1861 if (!(key instanceof PrivateKey)) {
1867 privateKey = (PrivateKey)key;
2222 public Block generateBlock(PrivateKey privateKey,
2245 Block(SignatureFile sfg, PrivateKey privateKey, String sigalg,
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DX509CRLImpl.java34 import java.security.PrivateKey;
415 public void sign(PrivateKey key, String algorithm)
435 public void sign(PrivateKey key, String algorithm, String provider)
/openjdk7/jdk/test/javax/xml/crypto/dsig/
H A DGenerationTests.java39 import java.security.PrivateKey;
1141 private static PrivateKey getPrivateKey(String algo) throws Exception {
1145 private static PrivateKey getPrivateKey(String algo, int keysize)
/openjdk7/jdk/test/sun/security/ssl/sanity/interop/
H A DCipherTest.java554 public PrivateKey getPrivateKey(String alias) {
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DDSA.java214 protected void engineInitSign(PrivateKey privateKey)
H A DJavaKeyStore.java225 * <p>The given java.security.PrivateKey <code>key</code> must
238 * <code>java.security.PrivateKey</code>).
249 if (!(key instanceof java.security.PrivateKey)) {
283 * <code>java.security.PrivateKey</code>, it must be accompanied by a
297 * <code>java.security.PrivateKey</code>).
/openjdk7/jdk/test/sun/security/pkcs11/fips/
H A DCipherTest.java563 public PrivateKey getPrivateKey(String alias) {
/openjdk7/jdk/test/sun/security/pkcs11/sslecc/
H A DCipherTest.java549 public PrivateKey getPrivateKey(String alias) {
/openjdk7/jdk/src/macosx/classes/apple/security/
H A DKeychainStore.java164 PrivateKey returnValue = null;
315 * <p>If the given key is of type <code>java.security.PrivateKey</code>,
328 * <code>java.security.PrivateKey</code>).
344 if (key instanceof PrivateKey) {
353 throw new KeyStoreException("Key is not a PrivateKey");
386 * <code>java.security.PrivateKey</code>, it must be accompanied by a
400 * <code>java.security.PrivateKey</code>).
/openjdk7/jdk/src/share/classes/sun/security/pkcs12/
H A DPKCS12KeyStore.java33 import java.security.PrivateKey;
377 * <p>If the given key is of type <code>java.security.PrivateKey</code>,
390 * <code>java.security.PrivateKey</code>).
403 if (key instanceof PrivateKey) {
414 throw new KeyStoreException("Key is not a PrivateKey");
446 * <code>java.security.PrivateKey</code>, it must be accompanied by a
460 * <code>java.security.PrivateKey</code>).
/openjdk7/jdk/test/com/oracle/security/ucrypto/
H A DTestRSA.java178 PrivateKey privKey = kf.generatePrivate

Completed in 163 milliseconds

123456