Entropy 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 Entropy 類別的新執行個體。
多載
Entropy(Byte[]) |
初始化 Entropy 類別的新執行個體,用來傳送二進位密碼格式的 Entropy。 |
Entropy(ProtectedKey) |
使用指定的受保護金鑰,初始化 Entropy 類別的新執行個體。 |
Entropy(Int32) |
使用隨機產生的位元組,初始化 Entropy 類別的新執行個體。 |
Entropy(Byte[], EncryptingCredentials) |
初始化 Entropy 類別的新執行個體,用來傳送加密金鑰格式的 Entropy。 |
Entropy(Byte[])
初始化 Entropy 類別的新執行個體,用來傳送二進位密碼格式的 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
Entropy 內金鑰內容的 entropySizeInBits。
適用於
Entropy(Byte[], EncryptingCredentials)
初始化 Entropy 類別的新執行個體,用來傳送加密金鑰格式的 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。