The
xmlSignatureInformationKeyX509 type is used to define the information that must be included in the
KeyInfo section of the XML signature. This enables you to add the information about a X509 certificate. The characteristics of this type of variable can be defined and changed using different WLanguage properties.
Remark: For more details on the declaration of this type of variable and the use of WLanguage properties, see
Declaring a variable.
MySignature is xmlSignature
Info is xmlSignatureInformationKeyX509
Info.WithCertificate = True
Add(MySignature.KeyInformation, Info)
Remarks
Properties specific to the description of xmlSignatureInformationKeyX509 variables
The following properties can be used to handle an xmlSignatureInformationKeyX509 variable:
| | |
Property name | Type used | Effect |
---|
WithCertificate | Boolean | - True: the certificate is added into the signature description,
- False: the certificate is not added into the signature description.
|
WithIssuer | Boolean | - True: the name of the certificate issuer is added into the signature description,
- False: the name of the certificate issuer is not added into the signature description.
|
WithSubjectName | Boolean | - True: the name of the certificate subject is added into the signature description,
- False: the name of the certificate subject is not added into the signature description.
|