isValidBytes static method

bool isValidBytes(
  1. List<int> keyBytes
)
override

Static method to validate the byte representation of a Monero public key.

This method checks the validity of a Monero public key's byte representation by invoking the isValidBytes method from the Ed25519MoneroPublicKey class. It returns true if the key bytes are valid and false otherwise.

Implementation

static bool isValidBytes(List<int> keyBytes) {
  return Ed25519MoneroPublicKey.isValidBytes(keyBytes);
}