RNGCryptoServiceProvider.GetNonZeroBytes 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
GetNonZeroBytes(Byte[]) |
在位元組陣列中填入在密碼編譯方面的強式隨機非零值序列。 |
GetNonZeroBytes(Span<Byte>) |
填入密碼編譯強式隨機非零值序列位元組的範圍。 |
GetNonZeroBytes(Byte[])
在位元組陣列中填入在密碼編譯方面的強式隨機非零值序列。
public:
override void GetNonZeroBytes(cli::array <System::Byte> ^ data);
public override void GetNonZeroBytes (byte[] data);
override this.GetNonZeroBytes : byte[] -> unit
Public Overrides Sub GetNonZeroBytes (data As Byte())
參數
- data
- Byte[]
要填入在密碼編譯方面強式的隨機非零值序列之陣列。
例外狀況
無法取得密碼編譯服務提供者 (CSP)。
data
為 null
。
範例
下列程式代碼範例會建立100個非零位元組的隨機序列,並將其儲存在 random
中。
array<Byte>^ random = gcnew array<Byte>(100);
RandomNumberGenerator^ rng = RandomNumberGenerator::Create();
rng->GetNonZeroBytes( random ); // The array is now filled with cryptographically strong random bytes, and none are zero.
byte[] random = new byte[100];
using (RandomNumberGenerator rng = RandomNumberGenerator.Create())
{
rng.GetNonZeroBytes(random); // The array is now filled with cryptographically strong random bytes, and none are zero.
}
Dim random() As Byte = New Byte(100) {}
Using rng As RandomNumberGenerator = RandomNumberGenerator.Create()
rng.GetNonZeroBytes(random) ' bytes in random are now random and none are zero
End Using
備註
位元組陣列的長度會決定產生多少密碼編譯強式隨機非零位元組。
另請參閱
適用於
GetNonZeroBytes(Span<Byte>)
填入密碼編譯強式隨機非零值序列位元組的範圍。
public:
override void GetNonZeroBytes(Span<System::Byte> data);
public override void GetNonZeroBytes (Span<byte> data);
override this.GetNonZeroBytes : Span<byte> -> unit
Public Overrides Sub GetNonZeroBytes (data As Span(Of Byte))