Elliptic Curve Multiplication Function
问题 I'm trying to make my own library for the elliptic curve. Some things work, but some others don't. To calculate a public key from a private key, you should multiply the Generator Point with the private key, and you get another point: the public key Point (ECPoint = BigInteger * ECPoint). Now, I have a private key, and I multiply it with the Generator Point of the Secp256k1 curve. I get a a key, but it is not the key I should get. This is my JAVA code: import java.math.BigInteger; public class