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 未満です。

適用対象