Home | History | Annotate | Download | only in jsse

Lines Matching full:privatekey

22 import java.security.PrivateKey;
147 protected void engineInitSign(PrivateKey privateKey) throws InvalidKeyException {
150 if (privateKey instanceof OpenSSLKeyHolder) {
151 OpenSSLKey pkey = ((OpenSSLKeyHolder) privateKey).getOpenSSLKey();
154 } else if (privateKey instanceof RSAPrivateCrtKey) {
159 RSAPrivateCrtKey rsaPrivateKey = (RSAPrivateCrtKey) privateKey;
161 } else if (privateKey instanceof RSAPrivateKey) {
166 RSAPrivateKey rsaPrivateKey = (RSAPrivateKey) privateKey;
168 } else if (privateKey instanceof DSAPrivateKey) {
173 DSAPrivateKey dsaPrivateKey = (DSAPrivateKey) privateKey;
175 } else if (privateKey instanceof ECPrivateKey) {
180 ECPrivateKey ecPrivateKey = (ECPrivateKey) privateKey;