Entropy コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
Entropy クラスの新しいインスタンスを初期化します。
オーバーロード
Entropy(Byte[]) |
バイナリ シークレット形式でエントロピを送信するための Entropy クラスの新しいインスタンスを初期化します。 |
Entropy(ProtectedKey) |
指定した保護キーを使用して、Entropy クラスの新しいインスタンスを初期化します。 |
Entropy(Int32) |
ランダムに生成されたバイトを使用して、Entropy クラスの新しいインスタンスを初期化します。 |
Entropy(Byte[], EncryptingCredentials) |
暗号化されたキー形式でエントロピを送信するための Entropy クラスの新しいインスタンスを初期化します。 |
Entropy(Byte[])
バイナリ シークレット形式でエントロピを送信するための Entropy クラスの新しいインスタンスを初期化します。
public:
Entropy(cli::array <System::Byte> ^ secret);
public Entropy (byte[] secret);
new System.IdentityModel.Protocols.WSTrust.Entropy : byte[] -> System.IdentityModel.Protocols.WSTrust.Entropy
Public Sub New (secret As Byte())
パラメーター
- secret
- Byte[]
キー マテリアルを格納するバイト配列。
適用対象
Entropy(ProtectedKey)
指定した保護キーを使用して、Entropy クラスの新しいインスタンスを初期化します。
public:
Entropy(System::IdentityModel::Protocols::WSTrust::ProtectedKey ^ protectedKey);
public Entropy (System.IdentityModel.Protocols.WSTrust.ProtectedKey protectedKey);
new System.IdentityModel.Protocols.WSTrust.Entropy : System.IdentityModel.Protocols.WSTrust.ProtectedKey -> System.IdentityModel.Protocols.WSTrust.Entropy
Public Sub New (protectedKey As ProtectedKey)
パラメーター
- protectedKey
- ProtectedKey
保護されたキーを表す ProtectedKey。バイナリ シークレットまたは暗号化キーのいずれかが可能です。
適用対象
Entropy(Int32)
ランダムに生成されたバイトを使用して、Entropy クラスの新しいインスタンスを初期化します。
public:
Entropy(int entropySizeInBits);
public Entropy (int entropySizeInBits);
new System.IdentityModel.Protocols.WSTrust.Entropy : int -> System.IdentityModel.Protocols.WSTrust.Entropy
Public Sub New (entropySizeInBits As Integer)
パラメーター
- entropySizeInBits
- Int32
エントロピ内のキー マテリアルの entropySizeInBits。
適用対象
Entropy(Byte[], EncryptingCredentials)
暗号化されたキー形式でエントロピを送信するための Entropy クラスの新しいインスタンスを初期化します。
public:
Entropy(cli::array <System::Byte> ^ secret, System::IdentityModel::Tokens::EncryptingCredentials ^ wrappingCredentials);
public Entropy (byte[] secret, System.IdentityModel.Tokens.EncryptingCredentials wrappingCredentials);
new System.IdentityModel.Protocols.WSTrust.Entropy : byte[] * System.IdentityModel.Tokens.EncryptingCredentials -> System.IdentityModel.Protocols.WSTrust.Entropy
Public Sub New (secret As Byte(), wrappingCredentials As EncryptingCredentials)
パラメーター
- secret
- Byte[]
キー マテリアルを格納するバイト配列。
- wrappingCredentials
- EncryptingCredentials
キー マテリアルを暗号化するために使用される資格情報を表す EncryptingCredentials。
適用対象
.NET