keyIsValid function

bool keyIsValid(
  1. String key
)

Whether key is a a 32-byte hexadecimal string.

Implementation

bool keyIsValid(String key) {
  return (isHexadecimal(key) && key.length == 64);
}