KeyExchangeAlgorithm Enum
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.
Defines the supported algorithm a client is allowed to perform using a KeyExchange key.
public enum KeyExchangeAlgorithm
type KeyExchangeAlgorithm =
Public Enum KeyExchangeAlgorithm
- Inheritance
-
KeyExchangeAlgorithm
Fields
Name | Value | Description |
---|---|---|
EncryptAes128Cbc | 1 | The client may use the key for encryption using Aes128Cbc. The key must be 16 bytes. |
DecryptAes128Cbc | 2 | The client may use the key for decryption using Aes128Cbc. The key must be 16 bytes. |
SignSha256Hmac | 3 | The client may use the key for signing using Sha256Hmac. The key must be 64 bytes. |
VerifySha256Hmac | 4 | The client may use the key for verification using Sha256Hmac. The key must be 64 bytes. |