Codeunit "Signature Key"
Represents the key of asymmetric algorithm.
Properties
| Name | Value |
|---|---|
| Access | Public |
| InherentEntitlements | X |
| InherentPermissions | X |
Methods
FromXmlString
Saves an key value from the key information from an XML string.
procedure FromXmlString(XmlString: SecretText)
Parameters
| Name | Type | Description |
|---|---|---|
| XmlString | SecretText |
The XML string containing key information. |
FromBase64String
Saves an key value from an certificate in Base64 format
procedure FromBase64String(CertBase64Value: Text, Password: SecretText, IncludePrivateParameters: Boolean)
Parameters
| Name | Type | Description |
|---|---|---|
| CertBase64Value | Text |
Represents the certificate value encoded using the Base64 algorithm |
| Password | SecretText |
Represents the certificate value encoded using the Base64 algorithm |
| IncludePrivateParameters | Boolean |
true to include private parameters; otherwise, false. |
ToXmlString
Gets an XML string containing the key of the saved key value.
procedure ToXmlString(): SecretText
Returns
| Type | Description |
|---|---|
| SecretText |
An XML string containing the key of the saved key value. |