Home | History | Annotate | Download | only in jsse

Lines Matching defs:rsa

46         jdkToOpenSsl.put("MD5/RSA", MD5RSA.class);
52 jdkToOpenSsl.put("SHA1/RSA", SHA1RSA.class);
53 jdkToOpenSsl.put("SHA-1/RSA", SHA1RSA.class);
91 * Holds a pointer to the native RSA key.
93 private int rsa;
133 * @param algorithm OpenSSL name of the algorithm, e.g. "RSA-SHA1".
139 if ("RSA-MD2".equals(algorithm)) {
191 rsa = NativeCrypto.EVP_PKEY_new_RSA(rsaPublicKey.getModulus().toByteArray(),
198 throw new InvalidKeyException("Need DSA or RSA public key");
219 int handle = (rsa != 0) ? rsa : dsa;
223 throw new SignatureException("Need DSA or RSA public key");
241 if (rsa != 0) {
242 NativeCrypto.EVP_PKEY_free(rsa);
255 super("RSA-MD5");
260 super("RSA-SHA1");
265 super("RSA-SHA256");
270 super("RSA-SHA384");
275 super("RSA-SHA512");