JubJubPoint.fromBytes constructor

JubJubPoint.fromBytes(
  1. List<int> bytes, {
  2. bool zip216Enabled = true,
})

Implementation

factory JubJubPoint.fromBytes(List<int> bytes, {bool zip216Enabled = true}) {
  return JubJubPoint.fromAffinePoint(
    JubJubAffinePoint.fromBytes(bytes, zip216Enabled: zip216Enabled),
  );
}