Esempio n. 1
0
 public static void FillRandomBytes(Span <byte> buffer, int length)
 {
     Random.NextBytes(buffer, length, RandomSource.SodiumCore);
 }
Esempio n. 2
0
 public static byte[] GetRandomBytes(int length)
 {
     return(Random.NextBytes(length, RandomSource.SodiumCore));
 }