SYNOPSIS |
#include <dkim.h>
DKIM_SIGINFO *dkim_getsignature(
DKIM *dkim
);
Retrieve the signature ultimately used to verify a message.
|
DESCRIPTION |
Called When |
dkim_getsignature() is called after
dkim_eom() to get a handle referring
to the signature which will be used to yield a final result to the
caller. |
|
---|
ARGUMENTS |
Argument | Description |
dkim |
Message-specific handle, returned by
dkim_verify.
|
|
RETURN VALUES |
Value | Description |
NULL |
The function was called before dkim_eom, or with
a handle that was not opened for verification.
|
otherwise |
A handle referring to the first signature found to be valid
which was not flagged to be ignored by the caller, or if none
were valid, the first signature not flagged to be ignored by the
caller.
|
|
NOTES |
|