|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2015-02-11 18:49 UTC] jimjag@php.net
-Status: Open
+Status: Not a bug
[2015-02-11 18:49 UTC] jimjag@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 17:00:02 2025 UTC |
Description: ------------ Folloing code returns false when decrypting originally empty string: $gpg = new gnupg(); $gpg->adddecryptkey($fingerprint, $passphrase); $output = $gpg->decrypt($data); $output will be false, but $gpg->geterror() returns false also, so you can check that no error has happened. Output should be empty string?.