251252253254255256257
static public class SHA1WithRSAEncryption extends JDKDigestSignature { public SHA1WithRSAEncryption() { super("SHA1withRSA", id_SHA1, new SHA1Digest(), new PKCS1Encoding(new RSAEngine())); }
260261262263264265266
static public class SHA224WithRSAEncryption extends JDKDigestSignature { public SHA224WithRSAEncryption() { super("SHA224withRSA", NISTObjectIdentifiers.id_sha224, new SHA224Digest(), new PKCS1Encoding(new RSAEngine())); }
269270271272273274275
static public class SHA256WithRSAEncryption extends JDKDigestSignature { public SHA256WithRSAEncryption() { super("SHA256withRSA", NISTObjectIdentifiers.id_sha256, new SHA256Digest(), new PKCS1Encoding(new RSAEngine())); }
278279280281282283284
static public class SHA384WithRSAEncryption extends JDKDigestSignature { public SHA384WithRSAEncryption() { super("SHA384withRSA", NISTObjectIdentifiers.id_sha384, new SHA384Digest(), new PKCS1Encoding(new RSAEngine())); }
287288289290291292293
static public class SHA512WithRSAEncryption extends JDKDigestSignature { public SHA512WithRSAEncryption() { super("SHA512withRSA", NISTObjectIdentifiers.id_sha512, new SHA512Digest(), new PKCS1Encoding(new RSAEngine())); }
296297298299300301302
static public class MD2WithRSAEncryption extends JDKDigestSignature { public MD2WithRSAEncryption() { super("MD2withRSA", md2, new MD2Digest(), new PKCS1Encoding(new RSAEngine())); }
305306307308309310311
static public class MD4WithRSAEncryption extends JDKDigestSignature { public MD4WithRSAEncryption() { super("MD4withRSA", md4, new MD4Digest(), new PKCS1Encoding(new RSAEngine())); }
314315316317318319320
static public class MD5WithRSAEncryption extends JDKDigestSignature { public MD5WithRSAEncryption() { super("MD5withRSA", md5, new MD5Digest(), new PKCS1Encoding(new RSAEngine())); }
323324325326327328329
static public class RIPEMD160WithRSAEncryption extends JDKDigestSignature { public RIPEMD160WithRSAEncryption() { super("RIPEMD160withRSA", TeleTrusTObjectIdentifiers.ripemd160, new RIPEMD160Digest(), new PKCS1Encoding(new RSAEngine())); }
332333334335336337338
static public class RIPEMD128WithRSAEncryption extends JDKDigestSignature { public RIPEMD128WithRSAEncryption() { super("RIPEMD128withRSA", TeleTrusTObjectIdentifiers.ripemd128, new RIPEMD128Digest(), new PKCS1Encoding(new RSAEngine())); }