PublicKeyPACEeCDH.fromECPoint constructor

PublicKeyPACEeCDH.fromECPoint({
  1. required ECPoint public,
})

Implementation

PublicKeyPACEeCDH.fromECPoint({required ECPoint public})
    : _x = public.x!.toBigInteger()!,
      _y = public.y!.toBigInteger()!,
      super(algo: TOKEN_AGREEMENT_ALGO.ECDH);