130131132133134135136
static public class ecNR extends SignatureSpi { public ecNR() { super(new SHA1Digest(), new ECNRSigner(), new StdDSAEncoder()); }
139140141142143144145
static public class ecNR224 extends SignatureSpi { public ecNR224() { super(new SHA224Digest(), new ECNRSigner(), new StdDSAEncoder()); }
148149150151152153154
static public class ecNR256 extends SignatureSpi { public ecNR256() { super(new SHA256Digest(), new ECNRSigner(), new StdDSAEncoder()); }
157158159160161162163
static public class ecNR384 extends SignatureSpi { public ecNR384() { super(new SHA384Digest(), new ECNRSigner(), new StdDSAEncoder()); }
166167168169170171172
static public class ecNR512 extends SignatureSpi { public ecNR512() { super(new SHA512Digest(), new ECNRSigner(), new StdDSAEncoder()); }
367368369370371372373
static public class ecNR extends JDKDSASigner { public ecNR() { super(new SHA1Digest(), new ECNRSigner()); }
376377378379380381382
static public class ecNR224 extends JDKDSASigner { public ecNR224() { super(new SHA224Digest(), new ECNRSigner()); }
385386387388389390391
static public class ecNR256 extends JDKDSASigner { public ecNR256() { super(new SHA256Digest(), new ECNRSigner()); }
394395396397398399400
static public class ecNR384 extends JDKDSASigner { public ecNR384() { super(new SHA384Digest(), new ECNRSigner()); }
403404405406407408409
static public class ecNR512 extends JDKDSASigner { public ecNR512() { super(new SHA512Digest(), new ECNRSigner()); }