129130131132133134135
static public class withSha224 extends SignatureSpi { public withSha224() { super(new SHA224Digest(), new RainbowSigner()); }
138139140141142143144
static public class withSha256 extends SignatureSpi { public withSha256() { super(new SHA256Digest(), new RainbowSigner()); }
147148149150151152153
static public class withSha384 extends SignatureSpi { public withSha384() { super(new SHA384Digest(), new RainbowSigner()); }
156157158159160161162
static public class withSha512 extends SignatureSpi { public withSha512() { super(new SHA512Digest(), new RainbowSigner()); }