次の方法で共有


RandomNumberGenerator.GetNonZeroBytes メソッド

派生クラスでオーバーライドされると、バイト配列に、暗号化に使用する厳密な 0 以外の値のランダム シーケンスを格納します。

Public MustOverride Sub GetNonZeroBytes( _
   ByVal data() As Byte _)
[C#]
public abstract void GetNonZeroBytes(byte[] data);
[C++]
public: virtual void GetNonZeroBytes(unsigned chardata __gc[]) = 0;
[JScript]
public abstract function GetNonZeroBytes(
   data : Byte[]);

パラメータ

  • data
    暗号化に使用する厳密な 0 以外のランダム バイトを格納する配列。

解説

バイト配列の長さによって、生成されるランダムなバイトの数が決まります。

使用例

[Visual Basic, C#, C++] 100 バイト長の 0 以外の値のランダム シーケンスを作成し、 random に格納する例を次に示します。

 
Dim random() As Byte = New Byte(100) {}
'RNGCryptoServiceProvider is an implementation of an RNG
Dim rng As New RNGCryptoServiceProvider()
rng.GetNonZeroBytes(random) ' bytes in random are now random and none are zero

[C#] 
byte[] random = new Byte[100];
//RNGCryptoServiceProvider is an implementation of a random number generator.
RNGCryptoServiceProvider rng = new RNGCryptoServiceProvider();
rng.GetNonZeroBytes(random); // The array is now filled with cryptographically strong random bytes, and none are zero.

[C++] 
Byte random[] = new Byte[100];
//RNGCryptoServiceProvider is an implementation of a random number generator.
RNGCryptoServiceProvider* rng = new RNGCryptoServiceProvider();
rng->GetNonZeroBytes(random); // The array is now filled with cryptographically strong random bytes, and none are zero.

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ

参照

RandomNumberGenerator クラス | RandomNumberGenerator メンバ | System.Security.Cryptography 名前空間 | 暗号サービス