(int bits)
| 23 | private ECPoint basePoint; // Base point G on the elliptic curve |
| 24 | |
| 25 | public ECC(int bits) { |
| 26 | generateKeys(bits); // Generates public-private key pair |
| 27 | } |
| 28 | |
| 29 | public EllipticCurve getCurve() { |
| 30 | return curve; // Returns the elliptic curve |
nothing calls this directly
no test coverage detected