RistrettoPoint.fromEdwardBytes constructor

RistrettoPoint.fromEdwardBytes(
  1. List<int> bytes
)

Implementation

factory RistrettoPoint.fromEdwardBytes(List<int> bytes) {
  return RistrettoPoint.fromEdwardsPoint(
    EDPoint.fromBytes(curve: Curves.curveEd25519, data: bytes),
  );
}