RNGCryptoServiceProvider クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
注意事項
RNGCryptoServiceProvider is obsolete. To generate a random number, use one of the RandomNumberGenerator static methods instead.
暗号化サービス プロバイダー (CSP) によって提供される実装を使用して、暗号乱数ジェネレーター (RNG) を実装します。 このクラスは継承できません。
public ref class RNGCryptoServiceProvider sealed : System::Security::Cryptography::RandomNumberGenerator
[System.Obsolete("RNGCryptoServiceProvider is obsolete. To generate a random number, use one of the RandomNumberGenerator static methods instead.", DiagnosticId="SYSLIB0023", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
public sealed class RNGCryptoServiceProvider : System.Security.Cryptography.RandomNumberGenerator
public sealed class RNGCryptoServiceProvider : System.Security.Cryptography.RandomNumberGenerator
[System.Runtime.InteropServices.ComVisible(true)]
public sealed class RNGCryptoServiceProvider : System.Security.Cryptography.RandomNumberGenerator
[<System.Obsolete("RNGCryptoServiceProvider is obsolete. To generate a random number, use one of the RandomNumberGenerator static methods instead.", DiagnosticId="SYSLIB0023", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
type RNGCryptoServiceProvider = class
inherit RandomNumberGenerator
type RNGCryptoServiceProvider = class
inherit RandomNumberGenerator
[<System.Runtime.InteropServices.ComVisible(true)>]
type RNGCryptoServiceProvider = class
inherit RandomNumberGenerator
Public NotInheritable Class RNGCryptoServiceProvider
Inherits RandomNumberGenerator
- 継承
- 属性
例
次のコード例は、 RNGCryptoServiceProvider クラスを使用して乱数を作成する方法を示しています。
//The following sample uses the Cryptography class to simulate the roll of a dice.
using System;
using System.IO;
using System.Text;
using System.Security.Cryptography;
class RNGCSP
{
private static RNGCryptoServiceProvider rngCsp = new RNGCryptoServiceProvider();
// Main method.
public static void Main()
{
const int totalRolls = 25000;
int[] results = new int[6];
// Roll the dice 25000 times and display
// the results to the console.
for (int x = 0; x < totalRolls; x++)
{
byte roll = RollDice((byte)results.Length);
results[roll - 1]++;
}
for (int i = 0; i < results.Length; ++i)
{
Console.WriteLine("{0}: {1} ({2:p1})", i + 1, results[i], (double)results[i] / (double)totalRolls);
}
rngCsp.Dispose();
}
// This method simulates a roll of the dice. The input parameter is the
// number of sides of the dice.
public static byte RollDice(byte numberSides)
{
if (numberSides <= 0)
throw new ArgumentOutOfRangeException("numberSides");
// Create a byte array to hold the random value.
byte[] randomNumber = new byte[1];
do
{
// Fill the array with a random value.
rngCsp.GetBytes(randomNumber);
}
while (!IsFairRoll(randomNumber[0], numberSides));
// Return the random number mod the number
// of sides. The possible values are zero-
// based, so we add one.
return (byte)((randomNumber[0] % numberSides) + 1);
}
private static bool IsFairRoll(byte roll, byte numSides)
{
// There are MaxValue / numSides full sets of numbers that can come up
// in a single byte. For instance, if we have a 6 sided die, there are
// 42 full sets of 1-6 that come up. The 43rd set is incomplete.
int fullSetsOfValues = Byte.MaxValue / numSides;
// If the roll is within this range of fair values, then we let it continue.
// In the 6 sided die case, a roll between 0 and 251 is allowed. (We use
// < rather than <= since the = portion allows through an extra 0 value).
// 252 through 255 would provide an extra 0, 1, 2, 3 so they are not fair
// to use.
return roll < numSides * fullSetsOfValues;
}
}
'The following sample uses the Cryptography class to simulate the roll of a dice.
Imports System.IO
Imports System.Text
Imports System.Security.Cryptography
Class RNGCSP
Private Shared rngCsp As New RNGCryptoServiceProvider()
' Main method.
Public Shared Sub Main()
Const totalRolls As Integer = 25000
Dim results(5) As Integer
' Roll the dice 25000 times and display
' the results to the console.
Dim x As Integer
For x = 0 To totalRolls
Dim roll As Byte = RollDice(System.Convert.ToByte(results.Length))
results((roll - 1)) += 1
Next x
Dim i As Integer
While i < results.Length
Console.WriteLine("{0}: {1} ({2:p1})", i + 1, results(i), System.Convert.ToDouble(results(i)) / System.Convert.ToDouble(totalRolls))
i += 1
End While
rngCsp.Dispose()
End Sub
' This method simulates a roll of the dice. The input parameter is the
' number of sides of the dice.
Public Shared Function RollDice(ByVal numberSides As Byte) As Byte
If numberSides <= 0 Then
Throw New ArgumentOutOfRangeException("NumSides")
End If
' Create a byte array to hold the random value.
Dim randomNumber(0) As Byte
Do
' Fill the array with a random value.
rngCsp.GetBytes(randomNumber)
Loop While Not IsFairRoll(randomNumber(0), numberSides)
' Return the random number mod the number
' of sides. The possible values are zero-
' based, so we add one.
Return System.Convert.ToByte(randomNumber(0) Mod numberSides + 1)
End Function
Private Shared Function IsFairRoll(ByVal roll As Byte, ByVal numSides As Byte) As Boolean
' There are MaxValue / numSides full sets of numbers that can come up
' in a single byte. For instance, if we have a 6 sided die, there are
' 42 full sets of 1-6 that come up. The 43rd set is incomplete.
Dim fullSetsOfValues As Integer = [Byte].MaxValue / numSides
' If the roll is within this range of fair values, then we let it continue.
' In the 6 sided die case, a roll between 0 and 251 is allowed. (We use
' < rather than <= since the = portion allows through an extra 0 value).
' 252 through 255 would provide an extra 0, 1, 2, 3 so they are not fair
' to use.
Return roll < numSides * fullSetsOfValues
End Function 'IsFairRoll
End Class
注釈
Important
この型は、IDisposable インターフェイスを実装します。 型の使用が完了したら、( Dispose メソッドを呼び出して) 直接破棄するか、間接的に (C# で using などの言語コンストラクトを使用して) 破棄する必要があります。 詳細については、「 IDisposable を実装するオブジェクトを使用する」を参照してください。
コンストラクター
| 名前 | 説明 |
|---|---|
| RNGCryptoServiceProvider() |
古い.
RNGCryptoServiceProvider クラスの新しいインスタンスを初期化します。 |
| RNGCryptoServiceProvider(Byte[]) |
古い.
RNGCryptoServiceProvider クラスの新しいインスタンスを初期化します。 |
| RNGCryptoServiceProvider(CspParameters) |
古い.
指定したパラメーターを使用して、 RNGCryptoServiceProvider クラスの新しいインスタンスを初期化します。 |
| RNGCryptoServiceProvider(String) |
古い.
RNGCryptoServiceProvider クラスの新しいインスタンスを初期化します。 |
メソッド
| 名前 | 説明 |
|---|---|
| Dispose() |
古い.
派生クラスでオーバーライドされると、 RandomNumberGenerator クラスの現在のインスタンスによって使用されているすべてのリソースが解放されます。 (継承元 RandomNumberGenerator) |
| Dispose(Boolean) |
古い.
派生クラスでオーバーライドされると、 RandomNumberGenerator によって使用されるアンマネージ リソースが解放され、必要に応じてマネージド リソースが解放されます。 (継承元 RandomNumberGenerator) |
| Equals(Object) |
古い.
指定したオブジェクトが現在のオブジェクトと等しいかどうかを判断します。 (継承元 Object) |
| Finalize() |
古い.
RNGCryptoServiceProvider クラスによって使用されるリソースを解放します。 |
| GetBytes(Byte[], Int32, Int32) |
古い.
指定したバイト数の指定したインデックスから始まる、暗号的に強力なランダムな値シーケンスを指定したバイト配列に格納します。 |
| GetBytes(Byte[], Int32, Int32) |
古い.
指定したバイト配列に、暗号的に強力なランダムな値シーケンスを入力します。 (継承元 RandomNumberGenerator) |
| GetBytes(Byte[]) |
古い.
バイトの配列に、暗号的に強力なランダム値のシーケンスを格納します。 |
| GetBytes(Span<Byte>) |
古い.
スパンに暗号的に強力なランダム バイトを格納します。 |
| GetBytes(Span<Byte>) |
古い.
スパンに暗号的に強力なランダム バイトを格納します。 (継承元 RandomNumberGenerator) |
| GetHashCode() |
古い.
既定のハッシュ関数として機能します。 (継承元 Object) |
| GetNonZeroBytes(Byte[]) |
古い.
ランダムな 0 以外の値の暗号的に強力なシーケンスをバイト配列に格納します。 |
| GetNonZeroBytes(Span<Byte>) |
古い.
バイト スパンに、0 以外の値の暗号的に強力なランダム シーケンスを入力します。 |
| GetNonZeroBytes(Span<Byte>) |
古い.
バイト スパンに、0 以外の値の暗号的に強力なランダム シーケンスを入力します。 (継承元 RandomNumberGenerator) |
| GetType() |
古い.
現在のインスタンスの Type を取得します。 (継承元 Object) |
| MemberwiseClone() |
古い.
現在の Objectの簡易コピーを作成します。 (継承元 Object) |
| ToString() |
古い.
現在のオブジェクトを表す文字列を返します。 (継承元 Object) |
適用対象
スレッド セーフ
この型はスレッド セーフです。