 | ISigningVerifySignature(CAEXObject, String, String) Method |
Verifies the provided signature for this CAEX object
Namespace: Aml.Engine.Services.InterfacesAssembly: Aml.Engine (in Aml.Engine.dll) Version: 3.2
Syntaxbool? VerifySignature(
CAEXObject CAEXObjectToVerify,
string signature,
string publicKey
)
Function VerifySignature (
CAEXObjectToVerify As CAEXObject,
signature As String,
publicKey As String
) As Boolean?
Nullable<bool> VerifySignature(
CAEXObject^ CAEXObjectToVerify,
String^ signature,
String^ publicKey
)
Parameters
- CAEXObjectToVerify CAEXObject
- The CAEX object to be verified with the provided signature
- signature String
- The signature to verify
- publicKey String
- The public key in xml string format to verify the signature.
Return Value
NullableBooleannull if verification is not possible: otherwise the result of the signature verification.
See Also