export function getRandomValues <T extends Uint8Array> (output: T): T {
  return crypto.getRandomValues(output);
}