Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Verifies the signature by using the certificate specified in the properties.
Note: The byte signature is reversed to support interop in native C++ byte signing.
Namespace: Microsoft.ConfigurationManagement.Messaging.Framework
Assembly: Microsoft.ConfigurationManagement.Messaging (in Microsoft.ConfigurationManagement.Messaging.dll)
Syntax
public bool VerifySignature(
byte[] signature,
byte[] data,
string hashAlgorithmName
)
public:
bool VerifySignature(
array<unsigned char>^ signature,
array<unsigned char>^ data,
String^ hashAlgorithmName
)
Public Function VerifySignature (
signature As Byte(),
data As Byte(),
hashAlgorithmName As String
) As Boolean
Parameters
signature
Type: System.Byte[]The digital signature to verify.
data
Type: System.Byte[]The data against which the signature is verified.
hashAlgorithmName
Type: System.StringHash algorithm to use for verifying the signature.
Return Value
Type: System.Boolean
True if the signature is valid; otherwise false.
See Also
VerifySignature Overload
MessageCertificateX509 Class
Microsoft.ConfigurationManagement.Messaging.Framework Namespace
Return to top