MCPcopy Create free account
hub / github.com/SeanDragon/protools / Signature

Class Signature

security/src/main/java/pro/tools/security/sm/SM2.java:715–728  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

713 }
714
715 public static class Signature {
716 BigInteger r;
717 BigInteger s;
718
719 Signature(BigInteger r, BigInteger s) {
720 this.r = r;
721 this.s = s;
722 }
723
724 @Override
725 public String toString() {
726 return r.toString(16) + "," + s.toString(16);
727 }
728 }
729}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected