diff options
author | Karl-Heinz Zimmer <[email protected]> | 2002-03-21 21:48:33 +0000 |
---|---|---|
committer | Karl-Heinz Zimmer <[email protected]> | 2002-03-21 21:48:33 +0000 |
commit | 70251d0f5fd18a1b4330b1af3d6a2a8219bc23c7 (patch) | |
tree | 73b2f07983cbb260773056b8e0541214342e5b47 /gpgmeplug/cryptplug.h | |
parent | * util.h (struct) [!HAVE_FOPENCOOKIE]: Make sure off_t and ssize_t (diff) | |
download | gpgme-70251d0f5fd18a1b4330b1af3d6a2a8219bc23c7.tar.gz gpgme-70251d0f5fd18a1b4330b1af3d6a2a8219bc23c7.zip |
changed code according to our hack before CeBIT, we are giving *binary* data to the decryptMessage() and to the checkMessageSignature() methode instead of passing base64 encoded data to them
Diffstat (limited to 'gpgmeplug/cryptplug.h')
-rw-r--r-- | gpgmeplug/cryptplug.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gpgmeplug/cryptplug.h b/gpgmeplug/cryptplug.h index ed936f7e..e3aea6ca 100644 --- a/gpgmeplug/cryptplug.h +++ b/gpgmeplug/cryptplug.h @@ -1549,8 +1549,11 @@ bool encryptAndSignMessage( const char* cleartext, \c true, otherwise \c false. */ -bool decryptMessage( const char* ciphertext, const - char** cleartext, const char* certificate ); +bool decryptMessage( const char* ciphertext, + bool cipherIsBinary, + int cipherLen, + const char** cleartext, + const char* certificate ); /*! \ingroup groupCryptAct \brief Combines the functionality of |