240241242243244245246
static public class gost3410 extends JDKGOST3410Signer { public gost3410() { super("GOST3411withGOST3410", new GOST3411Digest(), new GOST3410Signer()); }
249250251252253254255
static public class ecgost3410 extends JDKGOST3410Signer { public ecgost3410() { super("GOST3411withECGOST3410", new GOST3411Digest(), new ECGOST3410Signer()); }
231232233234235236237
static public class gost3410 extends JDKGOST3410Signer { public gost3410() { super(new GOST3411Digest(), new GOST3410Signer()); }
static public class ecgost3410 extends JDKGOST3410Signer { public ecgost3410() { super(new GOST3411Digest(), new ECGOST3410Signer()); }
232233234235236237238
241242243244245246247