geFromBytesVartime static method

GroupElementP3 geFromBytesVartime(
  1. List<int> s
)

Implementation

static GroupElementP3 geFromBytesVartime(List<int> s) {
  s.asMin32("geFromBytesVartime");
  final p = GroupElementP3();
  if (geFromBytesVartime_(p, s) != 0) {
    throw const CryptoOpsException("Invalid point bytes.");
  }
  return p;
}