Goedel.Cryptography.Jose.JoseWebSignature.Verify C# (CSharp) Method

Verify() public method

Verify the specified signature.
public Verify ( KeyPair Public ) : bool
Public Goedel.Cryptography.KeyPair The public signature verification key.
return bool
        public bool Verify(KeyPair Public) {
            var Verifier = Public.VerificationProvider;

            // unpack the header here.

            // set digest here using alg parameter.


            return Verifier.Verify(Payload, Signature);
            }

Same methods

JoseWebSignature::Verify ( string UDF, KeyPair Public ) : bool