< prev index next >

src/java.base/share/classes/sun/security/rsa/SunRsaSignEntries.java

Print this page

 67                 "sun.security.rsa.RSAKeyPairGenerator$Legacy",
 68                 getAliases("PKCS1"), null);
 69         addA(p, "Signature", "MD2withRSA",
 70                 "sun.security.rsa.RSASignature$MD2withRSA", attrs);
 71         addA(p, "Signature", "MD5withRSA",
 72                 "sun.security.rsa.RSASignature$MD5withRSA", attrs);
 73         addA(p, "Signature", "SHA1withRSA",
 74                 "sun.security.rsa.RSASignature$SHA1withRSA", attrs);
 75         addA(p, "Signature", "SHA224withRSA",
 76                 "sun.security.rsa.RSASignature$SHA224withRSA", attrs);
 77         addA(p, "Signature", "SHA256withRSA",
 78                 "sun.security.rsa.RSASignature$SHA256withRSA", attrs);
 79         addA(p, "Signature", "SHA384withRSA",
 80                 "sun.security.rsa.RSASignature$SHA384withRSA", attrs);
 81         addA(p, "Signature", "SHA512withRSA",
 82                 "sun.security.rsa.RSASignature$SHA512withRSA", attrs);
 83         addA(p, "Signature", "SHA512/224withRSA",
 84                 "sun.security.rsa.RSASignature$SHA512_224withRSA", attrs);
 85         addA(p, "Signature", "SHA512/256withRSA",
 86                 "sun.security.rsa.RSASignature$SHA512_256withRSA", attrs);








 87 
 88         addA(p, "KeyFactory", "RSASSA-PSS",
 89                 "sun.security.rsa.RSAKeyFactory$PSS", attrs);
 90         addA(p, "KeyPairGenerator", "RSASSA-PSS",
 91                 "sun.security.rsa.RSAKeyPairGenerator$PSS", attrs);
 92         addA(p, "Signature", "RSASSA-PSS",
 93                 "sun.security.rsa.RSAPSSSignature", attrs);
 94         addA(p, "AlgorithmParameters", "RSASSA-PSS",
 95                 "sun.security.rsa.PSSParameters", attrs);
 96     }
 97 
 98     public Iterator<Provider.Service> iterator() {
 99         return services.iterator();
100     }
101 
102     private LinkedHashSet<Provider.Service> services;
103 }

 67                 "sun.security.rsa.RSAKeyPairGenerator$Legacy",
 68                 getAliases("PKCS1"), null);
 69         addA(p, "Signature", "MD2withRSA",
 70                 "sun.security.rsa.RSASignature$MD2withRSA", attrs);
 71         addA(p, "Signature", "MD5withRSA",
 72                 "sun.security.rsa.RSASignature$MD5withRSA", attrs);
 73         addA(p, "Signature", "SHA1withRSA",
 74                 "sun.security.rsa.RSASignature$SHA1withRSA", attrs);
 75         addA(p, "Signature", "SHA224withRSA",
 76                 "sun.security.rsa.RSASignature$SHA224withRSA", attrs);
 77         addA(p, "Signature", "SHA256withRSA",
 78                 "sun.security.rsa.RSASignature$SHA256withRSA", attrs);
 79         addA(p, "Signature", "SHA384withRSA",
 80                 "sun.security.rsa.RSASignature$SHA384withRSA", attrs);
 81         addA(p, "Signature", "SHA512withRSA",
 82                 "sun.security.rsa.RSASignature$SHA512withRSA", attrs);
 83         addA(p, "Signature", "SHA512/224withRSA",
 84                 "sun.security.rsa.RSASignature$SHA512_224withRSA", attrs);
 85         addA(p, "Signature", "SHA512/256withRSA",
 86                 "sun.security.rsa.RSASignature$SHA512_256withRSA", attrs);
 87         addA(p, "Signature", "SHA3-224withRSA",
 88                 "sun.security.rsa.RSASignature$SHA3_224withRSA", attrs);
 89         addA(p, "Signature", "SHA3-256withRSA",
 90                 "sun.security.rsa.RSASignature$SHA3_256withRSA", attrs);
 91         addA(p, "Signature", "SHA3-384withRSA",
 92                "sun.security.rsa.RSASignature$SHA3_384withRSA", attrs);
 93         addA(p, "Signature", "SHA3-512withRSA",
 94                 "sun.security.rsa.RSASignature$SHA3_512withRSA", attrs);
 95 
 96         addA(p, "KeyFactory", "RSASSA-PSS",
 97                 "sun.security.rsa.RSAKeyFactory$PSS", attrs);
 98         addA(p, "KeyPairGenerator", "RSASSA-PSS",
 99                 "sun.security.rsa.RSAKeyPairGenerator$PSS", attrs);
100         addA(p, "Signature", "RSASSA-PSS",
101                 "sun.security.rsa.RSAPSSSignature", attrs);
102         addA(p, "AlgorithmParameters", "RSASSA-PSS",
103                 "sun.security.rsa.PSSParameters", null);
104     }
105 
106     public Iterator<Provider.Service> iterator() {
107         return services.iterator();
108     }
109 
110     private LinkedHashSet<Provider.Service> services;
111 }
< prev index next >