diff options
| author | Karl-Heinz Zimmer <[email protected]> | 2002-03-05 21:23:58 +0000 | 
|---|---|---|
| committer | Karl-Heinz Zimmer <[email protected]> | 2002-03-05 21:23:58 +0000 | 
| commit | 704a1b05b324ca30ed9dd0dbbbfc849f8f56b914 (patch) | |
| tree | e0b8c3123a1d08a115ed96be7c15263a1c16c3c6 /gpgmeplug/cryptplug.h | |
| parent | 2002-03-05 Marcus Brinkmann <[email protected]> (diff) | |
| download | gpgme-704a1b05b324ca30ed9dd0dbbbfc849f8f56b914.tar.gz gpgme-704a1b05b324ca30ed9dd0dbbbfc849f8f56b914.zip | |
Changed interface: additionally we now pass the following parameters into the checkMessageSignature function: bool signatureIsBinary - telling us whether the signature is armored ASCII or binary data, int signatureLen - holding the TRUE length of the signature if (and only if) this is binary data
Diffstat (limited to '')
| -rw-r--r-- | gpgmeplug/cryptplug.h | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/gpgmeplug/cryptplug.h b/gpgmeplug/cryptplug.h index 9cdeb07a..1b1aeadf 100644 --- a/gpgmeplug/cryptplug.h +++ b/gpgmeplug/cryptplug.h @@ -427,7 +427,7 @@ SignEmail signEmail( void );  */  void setWarnSendUnsigned( bool );     -     +  /*! \ingroup groupConfigSign    \brief Returns whether a warning should be emitted when the user    tries to send an email message unsigned. @@ -1427,6 +1427,8 @@ struct SignatureMetaData {  */  bool checkMessageSignature( const char* ciphertext,                              const char* signaturetext, +                            bool signatureIsBinary, +                            int signatureLen,                              struct SignatureMetaData* sigmeta );  /*! \ingroup groupSignAct | 
