keyHash static method

List<int> keyHash(
  1. List<int> pubKeyBytes
)

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);
}