isValidBytes static method
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);
}