G2NativeProjective.fromBytesUnchecked constructor

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

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

Implementation

factory G2NativeProjective.fromBytesUnchecked(List<int> bytes) {
  return G2NativeProjective.fromAffine(
    G2NativeAffinePoint.fromBytesUnchecked(bytes),
  );
}