G2Projective.fromBytesUnchecked constructor

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

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

Implementation

factory G2Projective.fromBytesUnchecked(List<int> bytes) {
  return G2Projective.fromAffine(G2AffinePoint.fromBytesUnchecked(bytes));
}