keyHash static method
Computes the key hash for the given public key bytes. Key hash is calculated using the Blake2b224 hash function.
Implementation
static List<int> keyHash(List<int> pubKeyBytes) {
return QuickCrypto.blake2b224Hash(pubKeyBytes);
}