Microsoft.Protocols.TestSuites.MS_WOPI.RSACryptoContext.VerifySignedDataUsingCurrentKey C# (CSharp) Method

VerifySignedDataUsingCurrentKey() public static method

A method is used to validate the signed data by using current public key.
public static VerifySignedDataUsingCurrentKey ( byte signedData, byte originalData ) : bool
signedData byte A parameter represents the signed data which will be validate.
originalData byte A parameter represents the original data which is used to execute the validation.
return bool
        public static bool VerifySignedDataUsingCurrentKey(byte[] signedData, byte[] originalData)
        {
            return VerifySignedData(signedData, originalData, PublicKeyBlobOfCurrent);
        }