PbeParameters(PbeEncryptionAlgorithm, HashAlgorithmName, Int32) コンストラクター

定義

PbeParameters クラスの新しいインスタンスを初期化します。

public:
 PbeParameters(System::Security::Cryptography::PbeEncryptionAlgorithm encryptionAlgorithm, System::Security::Cryptography::HashAlgorithmName hashAlgorithm, int iterationCount);
public PbeParameters(System.Security.Cryptography.PbeEncryptionAlgorithm encryptionAlgorithm, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, int iterationCount);
new System.Security.Cryptography.PbeParameters : System.Security.Cryptography.PbeEncryptionAlgorithm * System.Security.Cryptography.HashAlgorithmName * int -> System.Security.Cryptography.PbeParameters
Public Sub New (encryptionAlgorithm As PbeEncryptionAlgorithm, hashAlgorithm As HashAlgorithmName, iterationCount As Integer)

パラメーター

encryptionAlgorithm
PbeEncryptionAlgorithm

データを暗号化するときに使用するアルゴリズム。

hashAlgorithm
HashAlgorithmName

キー派生関数 (KDF) でパスワードを暗号化キーに変換するために使用するハッシュ アルゴリズムの名前。

iterationCount
Int32

パスワードを暗号化キーに変換するためにキー派生関数 (KDF) に提供する反復回数。

例外

iterationCount が 1 未満です。

適用対象