The format of a string representation used in the symmetric key.
Namespace:
Hummingbird.TestFramework.Util
Assembly:
Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax [DataContractAttribute(Namespace = "http://www.hummingbird-alm.com/testframework/201610")]
public enum KeyFormat
<DataContractAttribute(Namespace := "http://www.hummingbird-alm.com/testframework/201610")>
Public Enumeration KeyFormat
[DataContractAttribute(Namespace = L"http://www.hummingbird-alm.com/testframework/201610")]
public enum class KeyFormat
[<DataContractAttribute(Namespace = "http://www.hummingbird-alm.com/testframework/201610")>]
type KeyFormat
Members
| Member name | Value | Description |
---|
| Hexadecimal | 0 |
The key is in form of hexadecimal string
|
| Base64UrlEncoded | 1 |
The key is in form of Base64Url encoded string
|
| Base64Encoded | 2 |
The key is in form of classic Base64 encoded string
|
| OrdinaryString | 3 |
The key is in form of ordinary string
|
See Also