G1NativeProjective.fromBytesUnchecked constructor

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

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

Implementation

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