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)
  2. bool checkSignature(Vector!(ubyte, Alloc) sig)
    struct PKVerifier
    public
    bool
    checkSignature
    (
    Alloc
    )
    (
    auto const ref Vector!(ubyte, Alloc) sig
    )

Parameters

sig Vector!(ubyte, Alloc)

the signature to be verified

Return Value

Type: bool

true if the signature is valid, false otherwise

Meta