PKVerifier.checkSignature

Check the signature of the buffered message, i.e. the one build by successive calls to update.

  1. bool checkSignature(const(ubyte)* sig, size_t length)
    struct PKVerifier
    public
    bool
    checkSignature
    (
    const(ubyte)* sig
    ,
    size_t length
    )
  2. bool checkSignature(Vector!(ubyte, Alloc) sig)

Parameters

sig const(ubyte)*

the signature to be verified as a ubyte array

length size_t

the length of the above ubyte array

Return Value

Type: bool

true if the signature is valid, false otherwise

Meta