github.com/NVIDIA/aistore@v1.3.23-0.20240517131212-7df6609be51d/tools/cryptorand/read.go (about)

     1  // Package cryptorand
     2  /*
     3   * Copyright (c) 2023, NVIDIA CORPORATION. All rights reserved.
     4   */
     5  package cryptorand
     6  
     7  import "crypto/rand"
     8  
     9  func Read(buf []byte) (int, error) { return rand.Read(buf) }