G1Projective.fromBytesUnchecked constructor

G1Projective.fromBytesUnchecked(
  1. List<int> bytes
)

Creates a G1 affine point from bytes without checking curve or subgroup validity.

Implementation

factory G1Projective.fromBytesUnchecked(List<int> bytes) {
  return G1Projective.fromAffine(G1AffinePoint.fromBytesUnchecked(bytes));
}