aboutsummaryrefslogtreecommitdiffstats
path: root/gpgmeplug/cryptplug.h
diff options
context:
space:
mode:
authorKarl-Heinz Zimmer <[email protected]>2001-11-25 15:23:21 +0000
committerKarl-Heinz Zimmer <[email protected]>2001-11-25 15:23:21 +0000
commit9e24b664755cc9b0b54802e31ef39531c63aca31 (patch)
treecb0f74092395973c6f6eb2ba7cfddf4dd70265e8 /gpgmeplug/cryptplug.h
parentNow gpgmeplug.c can also create encrypted and signed+encrypted S/MIME mails. (diff)
downloadgpgme-9e24b664755cc9b0b54802e31ef39531c63aca31.tar.gz
gpgme-9e24b664755cc9b0b54802e31ef39531c63aca31.zip
[Kalle] signature verification and decoding of encrypted mails
Diffstat (limited to 'gpgmeplug/cryptplug.h')
-rw-r--r--gpgmeplug/cryptplug.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gpgmeplug/cryptplug.h b/gpgmeplug/cryptplug.h
index e809fca1..1e4a67de 100644
--- a/gpgmeplug/cryptplug.h
+++ b/gpgmeplug/cryptplug.h
@@ -921,9 +921,9 @@ struct SignatureMetaData {
/*! \ingroup groupSignAct
\brief Checks whether the signature of a message is
- valid. \c ciphertext specifies the message
- as it was received by the MUA, \c cleartext
- is the message with the signature(s) removed.
+ valid. \c ciphertext specifies the signed message
+ as it was received by the MUA, \c signaturetext is the
+ signature itself.
Depending on the configuration, MUAs might not need to use this.
If \c sigmeta is non-null, the
@@ -932,7 +932,7 @@ struct SignatureMetaData {
function call.
*/
bool checkMessageSignature( const char* ciphertext,
- const char** cleartext,
+ const char* signaturetext,
struct SignatureMetaData* sigmeta );
/*! \ingroup groupSignAct