diff options
| author | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-07-23 02:57:07 +0200 |
|---|---|---|
| committer | nils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-07-23 02:57:07 +0200 |
| commit | 95ba1ee4a1bb5c6d3640565fc5e3cf418abafe51 (patch) | |
| tree | 350b6cd29b9048d136247a8067269322cb9da23e /gpgwin.cpp | |
| parent | independent notifcation area (diff) | |
| download | gpg4usb-95ba1ee4a1bb5c6d3640565fc5e3cf418abafe51.tar.gz gpg4usb-95ba1ee4a1bb5c6d3640565fc5e3cf418abafe51.zip | |
added isCompletelySigned function
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@504 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to 'gpgwin.cpp')
| -rw-r--r-- | gpgwin.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -708,6 +708,16 @@ void GpgWin::sign() cursor.endEditBlock(); } } +bool GpgWin::isCompletedlySigned(const QByteArray &text) { + + if (text.startsWith("-----BEGIN PGP SIGNED MESSAGE-----") && text.endsWith("-----END PGP SIGNATURE-----")) { + qDebug() << "totally signed"; + return true; + } else { + qDebug("partially signed"); + return false; + } +} void GpgWin::verify() { @@ -715,6 +725,8 @@ void GpgWin::verify() QByteArray text = edit->curTextPage()->toPlainText().toAscii(); // TODO: toUtf8() here? preventNoDataErr(&text); + isCompletedlySigned(text); + gpgme_signature_t sign = mCtx->verify(text); if (sign == NULL) { |
