2 overrides of GetBytes
System.Security.Cryptography (2)
System\Security\Cryptography\RandomNumberGeneratorImplementation.cs (1)
34
public override void
GetBytes
(byte[] data, int offset, int count)
System\Security\Cryptography\RNGCryptoServiceProvider.cs (1)
28
public override void
GetBytes
(byte[] data, int offset, int count) => _impl.GetBytes(data, offset, count);
2 references to GetBytes
System.Security.Cryptography (2)
System\Security\Cryptography\RandomNumberGenerator.cs (1)
62
GetBytes
(array, 0, data.Length);
System\Security\Cryptography\RNGCryptoServiceProvider.cs (1)
28
public override void GetBytes(byte[] data, int offset, int count) => _impl.
GetBytes
(data, offset, count);