Tpm2Lib.Tpm2VerifySignatureRequest.Tpm2VerifySignatureRequest C# (CSharp) Method

Tpm2VerifySignatureRequest() public method

public Tpm2VerifySignatureRequest ( TpmHandle the_keyHandle, byte the_digest, ISignatureUnion the_signature ) : System
the_keyHandle TpmHandle handle of public key that will be used in the validation Auth Index: None
the_digest byte digest of the signed message
the_signature ISignatureUnion signature to be tested(One of SignatureRsassa, SignatureRsapss, SignatureEcdsa, SignatureEcdaa, SignatureSm2, SignatureEcschnorr, TpmHash, SchemeHash, NullSignature)
return System
        public Tpm2VerifySignatureRequest(
        TpmHandle the_keyHandle,
        byte[] the_digest,
        ISignatureUnion the_signature
        )
        {
            this.keyHandle = the_keyHandle;
            this.digest = the_digest;
            this.signature = the_signature;
        }
        new public Tpm2VerifySignatureRequest Copy()

Same methods

Tpm2VerifySignatureRequest::Tpm2VerifySignatureRequest ( ) : System
Tpm2VerifySignatureRequest::Tpm2VerifySignatureRequest ( Tpm2VerifySignatureRequest the_Tpm2VerifySignatureRequest ) : System
Tpm2VerifySignatureRequest