isValidPoint static method

bool isValidPoint(
  1. List<int> bytes
)

check bytes is valid ed25519 point.

Implementation

static bool isValidPoint(List<int> bytes) {
  final GroupElementP3 p = GroupElementP3();
  return CryptoOps.geFromBytesVartime_(p, bytes) == 0;
}