length of random bytes
hexadecimal string of generated random bytes
This function generates a secure random hexadecimal string
with specified bytes by crypto.getRandomValues()
which uses a pseudo-random number generator(PRNG) algorithm.
getSecureRandom(3) -> "f73ad5"
getSecureRandom(3) -> "d431c6"
getSecureRandom(256) -> "147ac8..." (string length will be 512=256*2)
generate a secure random hexadecimal string