gnupg_verify
Verifies a signed text
&reftitle.description;
arraygnupg_verify
resourceidentifier
stringsigned_text
stringsignature
stringplaintext
Verifies the given signed_text and returns information about the
signature.
&reftitle.parameters;
identifier
&gnupg.identifier;
signed_text
The signed text.
signature
The signature.
To verify a clearsigned text, set signature to &false;.
plaintext
The plain text.
If this optional parameter is passed, it is
filled with the plain text.
&reftitle.returnvalues;
On success, this function returns information about the signature.
On failure, this function returns &false;.
&reftitle.examples;
Procedural gnupg_verify example
]]>
OO gnupg_verify example
verify($signed_text,false,$plaintext);
print_r($info);
// detached signature
$info = $gpg -> verify($signed_text,$signature);
print_r($info);
?>
]]>