summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-crypt/qca-gnupg/files')
-rw-r--r--app-crypt/qca-gnupg/files/digest-qca-gnupg-0.1_p200604063
-rw-r--r--app-crypt/qca-gnupg/files/qca-gnupg_fix.diff23
2 files changed, 0 insertions, 26 deletions
diff --git a/app-crypt/qca-gnupg/files/digest-qca-gnupg-0.1_p20060406 b/app-crypt/qca-gnupg/files/digest-qca-gnupg-0.1_p20060406
deleted file mode 100644
index b6ad2774f..000000000
--- a/app-crypt/qca-gnupg/files/digest-qca-gnupg-0.1_p20060406
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 60ecf3c3c3b0f7f22b62c51837c93e03 qca-gnupg-0.1-20060406.tar.bz2 21617
-RMD160 03c493c6e815d5450bd2b8472e1af2708225a905 qca-gnupg-0.1-20060406.tar.bz2 21617
-SHA256 023fe4f4b3d9e30130f07b9b5bff88c8573f35dea7e2b786c80e8fcb4be48698 qca-gnupg-0.1-20060406.tar.bz2 21617
diff --git a/app-crypt/qca-gnupg/files/qca-gnupg_fix.diff b/app-crypt/qca-gnupg/files/qca-gnupg_fix.diff
deleted file mode 100644
index 0ae2f3ed6..000000000
--- a/app-crypt/qca-gnupg/files/qca-gnupg_fix.diff
+++ /dev/null
@@ -1,23 +0,0 @@
-diff -ur qca-gnupg-0.1-20060406/qca-gnupg.cpp qca-gnupg-0.1-20060406.new/qca-gnupg.cpp
---- qca-gnupg-0.1-20060406/qca-gnupg.cpp 2006-04-06 23:55:19.000000000 +0200
-+++ qca-gnupg-0.1-20060406.new/qca-gnupg.cpp 2006-04-12 12:31:30.000000000 +0200
-@@ -720,12 +724,14 @@
-
- SecureMessageKey key;
- PGPKey pub = publicKeyFromId(signerId, provider());
-- if(!pub.isNull())
-- {
-- key.setPGPPublicKey(pub);
-- signer = SecureMessageSignature(ir, v, key, ts);
-- wasSigned = true;
-+ if(pub.isNull()) {
-+ MyPGPKeyContext *kc = new MyPGPKeyContext(provider());
-+ kc->_props.keyId = signerId;
-+ pub.change(kc);
- }
-+ key.setPGPPublicKey(pub);
-+ signer = SecureMessageSignature(ir, v, key, ts);
-+ wasSigned = true;
- }
- }
- else