HMAC algorithm ("hmacSHA{1,256,384,512}")
hexadecimal string of HMAC key
This function generates a HMAC key with specified HMAC algorithm with crypto.getRandomValues not crypto.subtle.generateKey. Its byte length will be the same as generateKey as following:
getNewHMACKey("hmacSHA256") -> "8ab134..." (64 bytes)
getNewHMACKey("hmacSHA512") -> "374cdf..." (128 bytes)
generate new HMAC key with specified HMAC algorithm