diff options
author | Karl-Heinz Zimmer <[email protected]> | 2002-03-22 10:40:24 +0000 |
---|---|---|
committer | Karl-Heinz Zimmer <[email protected]> | 2002-03-22 10:40:24 +0000 |
commit | cf04fed2deb7b222d32c1fbe1acf6a0c4bd243b0 (patch) | |
tree | 022b7f11ff6a9e2100b83d76974d812adac64d4e /gpgmeplug/gpgme-openpgp.c | |
parent | changed code according to our hack before CeBIT, we are giving *binary* data ... (diff) | |
download | gpgme-cf04fed2deb7b222d32c1fbe1acf6a0c4bd243b0.tar.gz gpgme-cf04fed2deb7b222d32c1fbe1acf6a0c4bd243b0.zip |
interface change: signMessage() and encryptMessage() now return an additional 'cipherLen' parameter to enable us to handle binary cipher data
Diffstat (limited to 'gpgmeplug/gpgme-openpgp.c')
-rw-r--r-- | gpgmeplug/gpgme-openpgp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gpgmeplug/gpgme-openpgp.c b/gpgmeplug/gpgme-openpgp.c index dce22bea..042a11dc 100644 --- a/gpgmeplug/gpgme-openpgp.c +++ b/gpgmeplug/gpgme-openpgp.c @@ -16,6 +16,7 @@ #define GPGMEPLUG_SIGN_FLAT_PREFIX "" #define GPGMEPLUG_SIGN_FLAT_SEPARATOR "" #define GPGMEPLUG_SIGN_FLAT_POSTFIX "" +#define __GPGMEPLUG_SIGNATURE_CODE_IS_BINARY true #define GPGMEPLUG_ENC_INCLUDE_CLEARTEXT false #define GPGMEPLUG_ENC_MAKE_MIME_OBJECT true @@ -33,5 +34,6 @@ #define GPGMEPLUG_ENC_FLAT_PREFIX "" #define GPGMEPLUG_ENC_FLAT_SEPARATOR "" #define GPGMEPLUG_ENC_FLAT_POSTFIX "" +#define __GPGMEPLUG_ENCRYPTED_CODE_IS_BINARY false #include "gpgmeplug.c" |