ProtectedKey コンストラクター

定義

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

オーバーロード

ProtectedKey(Byte[])

暗号化されない ProtectedKey クラスの新しいインスタンスを初期化します。

ProtectedKey(Byte[], EncryptingCredentials)

指定した暗号化の資格情報を使用して、ProtectedKey クラスの新しいインスタンスを初期化します。

ProtectedKey(Byte[])

暗号化されない ProtectedKey クラスの新しいインスタンスを初期化します。

public:
 ProtectedKey(cli::array <System::Byte> ^ secret);
public ProtectedKey (byte[] secret);
new System.IdentityModel.Protocols.WSTrust.ProtectedKey : byte[] -> System.IdentityModel.Protocols.WSTrust.ProtectedKey
Public Sub New (secret As Byte())

パラメーター

secret
Byte[]

保護するキー マテリアルを格納する Byte の配列。

注釈

このコンストラクターを使用して、キー マテリアルをクリア テキストで送信します。 プロパティはWrappingCredentials、新しいProtectedKeyインスタンスで にnull設定されます。

適用対象

ProtectedKey(Byte[], EncryptingCredentials)

指定した暗号化の資格情報を使用して、ProtectedKey クラスの新しいインスタンスを初期化します。

public:
 ProtectedKey(cli::array <System::Byte> ^ secret, System::IdentityModel::Tokens::EncryptingCredentials ^ wrappingCredentials);
public ProtectedKey (byte[] secret, System.IdentityModel.Tokens.EncryptingCredentials wrappingCredentials);
new System.IdentityModel.Protocols.WSTrust.ProtectedKey : byte[] * System.IdentityModel.Tokens.EncryptingCredentials -> System.IdentityModel.Protocols.WSTrust.ProtectedKey
Public Sub New (secret As Byte(), wrappingCredentials As EncryptingCredentials)

パラメーター

secret
Byte[]

保護するキー マテリアルを格納する Byte の配列。

wrappingCredentials
EncryptingCredentials

キー マテリアルを暗号化するために使用される資格情報を格納する EncryptingCredentials

注釈

このコンストラクターを使用して、暗号化されたキー マテリアルを送信します。

適用対象