diff options
Diffstat (limited to 'M2Crypto/PGP/constants.py')
-rw-r--r-- | M2Crypto/PGP/constants.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/M2Crypto/PGP/constants.py b/M2Crypto/PGP/constants.py new file mode 100644 index 0000000..9a7810f --- /dev/null +++ b/M2Crypto/PGP/constants.py @@ -0,0 +1,19 @@ +"""M2Crypto PGP2. + +Copyright (c) 1999-2003 Ng Pheng Siong. All rights reserved.""" + +CTB_TAG = 128 + +CTB_PKE = 1 +CTB_SIGNATURE = 2 +CTB_MESSAGE_DIGETS = 3 +CTB_PRIVATE_KEY = 5 +CTB_PUBLIC_KEY = 6 +CTB_COMPRESSED_DATA = 8 +CTB_CKE = 9 +CTB_LITERAL_DATA = 11 +CTB_TRUST = 12 +CTB_USERID = 13 +CTB_COMMENT = 14 + + |