()
| 36 | private static ECPoint G; |
| 37 | |
| 38 | public SM2() { |
| 39 | curve = new ECCurve.Fp(p, // q |
| 40 | a, // a |
| 41 | b); // b |
| 42 | G = curve.createPoint(gx, gy); |
| 43 | ecc_bc_spec = new ECDomainParameters(curve, G, n); |
| 44 | } |
| 45 | |
| 46 | /** |
| 47 | * 以16进制打印字节数组 |
nothing calls this directly
no outgoing calls
no test coverage detected