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