Udostępnij za pośrednictwem


RSAOAEPKeyExchangeFormatter.Rng Właściwość

Definicja

Pobiera lub ustawia algorytm generatora liczb losowych do użycia podczas tworzenia wymiany kluczy.

public:
 property System::Security::Cryptography::RandomNumberGenerator ^ Rng { System::Security::Cryptography::RandomNumberGenerator ^ get(); void set(System::Security::Cryptography::RandomNumberGenerator ^ value); };
public System.Security.Cryptography.RandomNumberGenerator? Rng { get; set; }
public System.Security.Cryptography.RandomNumberGenerator Rng { get; set; }
member this.Rng : System.Security.Cryptography.RandomNumberGenerator with get, set
Public Property Rng As RandomNumberGenerator

Wartość właściwości

Wystąpienie algorytmu generatora liczb losowych do użycia.

Przykłady

W poniższym przykładzie kodu pokazano, jak ustawić Rng właściwość na liczbę losową. Ten przykład kodu jest częścią większego przykładu udostępnionego RSAOAEPKeyExchangeFormatter dla klasy .

RandomNumberGenerator^ ring = RandomNumberGenerator::Create();
rsaFormatter->Rng = ring;
RandomNumberGenerator ring = RandomNumberGenerator.Create(); 
rsaFormatter.Rng = ring;
Dim ring As RandomNumberGenerator = RandomNumberGenerator.Create()
rsaFormatter.Rng = ring

Uwagi

Jeśli ta właściwość to null, jest używany domyślny algorytm generatora liczb losowych.

Dotyczy

Zobacz też