PublicKey constructor

PublicKey(
  1. List<BigInt> p
)

Create a PublicKey from a curve point p @param {ListBigInt} p - curve point

Implementation

PublicKey(List<BigInt> p) {
  this.p = p;
}