316317318319320321322
static public class RIPEMD128WithRSAEncryption extends JDKDigestSignature { public RIPEMD128WithRSAEncryption() { super(TeleTrusTObjectIdentifiers.ripemd128, new RIPEMD128Digest(), new PKCS1Encoding(new RSABlindedEngine())); }
325326327328329330331
static public class RIPEMD256WithRSAEncryption extends JDKDigestSignature { public RIPEMD256WithRSAEncryption() { super(TeleTrusTObjectIdentifiers.ripemd256, new RIPEMD256Digest(), new PKCS1Encoding(new RSABlindedEngine())); }
116117118119120121122
static public class SHA1WithRSAEncryption extends JDKISOSignature { public SHA1WithRSAEncryption() { super(new SHA1Digest(), new RSABlindedEngine()); }
125126127128129130131
static public class MD5WithRSAEncryption extends JDKISOSignature { public MD5WithRSAEncryption() { super(new MD5Digest(), new RSABlindedEngine()); }
134135136137138139140
static public class RIPEMD160WithRSAEncryption extends JDKISOSignature { public RIPEMD160WithRSAEncryption() { super(new RIPEMD160Digest(), new RSABlindedEngine()); }
234235236237238239240
static public class PSSwithRSA extends JDKPSSSigner { public PSSwithRSA() { super(new RSABlindedEngine(), null); }
243244245246247248249
static public class SHA1withRSA extends JDKPSSSigner { public SHA1withRSA() { super(new RSABlindedEngine(), PSSParameterSpec.DEFAULT); }
252253254255256257258
static public class SHA224withRSA extends JDKPSSSigner { public SHA224withRSA() { super(new RSABlindedEngine(), new PSSParameterSpec("SHA-224", "MGF1", new MGF1ParameterSpec("SHA-224"), 28, 1)); }
261262263264265266267
static public class SHA256withRSA extends JDKPSSSigner { public SHA256withRSA() { super(new RSABlindedEngine(), new PSSParameterSpec("SHA-256", "MGF1", new MGF1ParameterSpec("SHA-256"), 32, 1)); }
270271272273274275276
static public class SHA384withRSA extends JDKPSSSigner { public SHA384withRSA() { super(new RSABlindedEngine(), new PSSParameterSpec("SHA-384", "MGF1", new MGF1ParameterSpec("SHA-384"), 48, 1)); }