summaryrefslogtreecommitdiffstats
path: root/pgplib.h
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1999-06-08 09:28:16 +0000
committerThomas Roessler <roessler@does-not-exist.org>1999-06-08 09:28:16 +0000
commitc53abe40f5e1efc4272262a9ee5689577897d045 (patch)
treeff03b496efa54cdabf53663e655aff5fd27e40db /pgplib.h
parentc9b1eb66b8f4263b780f0e60f04e7cacaee1914b (diff)
- Add a $weed option.
- Add out-of-band reporting of signature status.
Diffstat (limited to 'pgplib.h')
-rw-r--r--pgplib.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/pgplib.h b/pgplib.h
index 2f4c5bfd..28eea098 100644
--- a/pgplib.h
+++ b/pgplib.h
@@ -19,9 +19,10 @@
#ifdef _PGPPATH
-#define PGPENCRYPT 1
-#define PGPSIGN 2
-#define PGPKEY 4
+#define PGPENCRYPT (1 << 0)
+#define PGPSIGN (1 << 1)
+#define PGPKEY (1 << 2)
+#define PGPGOODSIGN (1 << 3)
#define KEYFLAG_CANSIGN (1 << 0)
#define KEYFLAG_CANENCRYPT (1 << 1)