BinarySecretKeyIdentifierClause Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the BinarySecretKeyIdentifierClause class.
Overloads
BinarySecretKeyIdentifierClause(Byte[]) |
Initializes a new instance of the BinarySecretKeyIdentifierClause class using the specified key. |
BinarySecretKeyIdentifierClause(Byte[], Boolean) |
Initializes a new instance of the BinarySecretKeyIdentifierClause class using the specified values. |
BinarySecretKeyIdentifierClause(Byte[], Boolean, Byte[], Int32) |
Initializes a new instance of the BinarySecretKeyIdentifierClause class using the specified values. |
BinarySecretKeyIdentifierClause(Byte[])
Initializes a new instance of the BinarySecretKeyIdentifierClause class using the specified key.
public:
BinarySecretKeyIdentifierClause(cli::array <System::Byte> ^ key);
public BinarySecretKeyIdentifierClause (byte[] key);
new System.ServiceModel.Security.BinarySecretKeyIdentifierClause : byte[] -> System.ServiceModel.Security.BinarySecretKeyIdentifierClause
Public Sub New (key As Byte())
Parameters
Applies to
BinarySecretKeyIdentifierClause(Byte[], Boolean)
Initializes a new instance of the BinarySecretKeyIdentifierClause class using the specified values.
public:
BinarySecretKeyIdentifierClause(cli::array <System::Byte> ^ key, bool cloneBuffer);
public BinarySecretKeyIdentifierClause (byte[] key, bool cloneBuffer);
new System.ServiceModel.Security.BinarySecretKeyIdentifierClause : byte[] * bool -> System.ServiceModel.Security.BinarySecretKeyIdentifierClause
Public Sub New (key As Byte(), cloneBuffer As Boolean)
Parameters
- cloneBuffer
- Boolean
true
to clone the buffer; otherwise, false
.
Applies to
BinarySecretKeyIdentifierClause(Byte[], Boolean, Byte[], Int32)
Initializes a new instance of the BinarySecretKeyIdentifierClause class using the specified values.
public:
BinarySecretKeyIdentifierClause(cli::array <System::Byte> ^ key, bool cloneBuffer, cli::array <System::Byte> ^ derivationNonce, int derivationLength);
public BinarySecretKeyIdentifierClause (byte[] key, bool cloneBuffer, byte[] derivationNonce, int derivationLength);
new System.ServiceModel.Security.BinarySecretKeyIdentifierClause : byte[] * bool * byte[] * int -> System.ServiceModel.Security.BinarySecretKeyIdentifierClause
Public Sub New (key As Byte(), cloneBuffer As Boolean, derivationNonce As Byte(), derivationLength As Integer)
Parameters
- cloneBuffer
- Boolean
true
to clone the buffer; otherwise, false
.
- derivationNonce
- Byte[]
The "number used once" (nonce) used to derive the key.
- derivationLength
- Int32
The length of the key to be derived.