diff options
author | Karl-Heinz Zimmer <[email protected]> | 2001-11-25 03:37:13 +0000 |
---|---|---|
committer | Karl-Heinz Zimmer <[email protected]> | 2001-11-25 03:37:13 +0000 |
commit | 49b7969a491f798607f5abc14b716246c5bf3021 (patch) | |
tree | 7886ffe261240b238f9108bd0dd378fd2da719d8 /gpgmeplug/cryptplug.h | |
parent | Guess what. (diff) | |
download | gpgme-49b7969a491f798607f5abc14b716246c5bf3021.tar.gz gpgme-49b7969a491f798607f5abc14b716246c5bf3021.zip |
adjusted 'encryptMessage' parameters: now also the addressee is given
Diffstat (limited to '')
-rw-r--r-- | gpgmeplug/cryptplug.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gpgmeplug/cryptplug.h b/gpgmeplug/cryptplug.h index 73176fab..e809fca1 100644 --- a/gpgmeplug/cryptplug.h +++ b/gpgmeplug/cryptplug.h @@ -833,9 +833,9 @@ void appendDirectoryServer( const char* servername, int port, /*! \ingroup groupConfigDir */ struct DirectoryServer { - const char* servername; + char* servername; int port; - const char* description; + char* description; }; @@ -952,7 +952,9 @@ bool storeCertificatesFromMessage( const char* ciphertext ); \c true, otherwise \c false. */ -bool encryptMessage( const char* cleartext, const char** ciphertext ); +bool encryptMessage( const char* cleartext, + const char** ciphertext, + const char* addressee ); /*! \ingroup groupCryptAct \brief Combines the functionality of |