diff options
author | ubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2012-05-01 11:46:42 +0000 |
---|---|---|
committer | ubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2012-05-01 11:46:42 +0000 |
commit | 2966d6ffa465a38c28ab4914ffefe9330b424553 (patch) | |
tree | d69591b22c47834d71c20cc73c6eaff4e7ba550e /gpgcontext.cpp | |
parent | verify for files (not yet working) (diff) | |
download | gpg4usb-2966d6ffa465a38c28ab4914ffefe9330b424553.tar.gz gpg4usb-2966d6ffa465a38c28ab4914ffefe9330b424553.zip |
verify file working now
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@910 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to 'gpgcontext.cpp')
-rw-r--r-- | gpgcontext.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gpgcontext.cpp b/gpgcontext.cpp index 78a124c..5884c14 100644 --- a/gpgcontext.cpp +++ b/gpgcontext.cpp @@ -611,7 +611,7 @@ gpgme_signature_t GpgContext::verify(QByteArray *inBuffer, QByteArray *sigBuffer if (sigBuffer != NULL ) { gpgme_data_t sigdata; err = gpgme_data_new_from_mem(&sigdata, sigBuffer->data(), sigBuffer->size(), 1); - err = gpgme_op_verify (mCtx, sigdata, NULL, in); + err = gpgme_op_verify (mCtx, sigdata, in, NULL); } else { err = gpgme_op_verify (mCtx, in, NULL, in); } |