| 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected