aboutsummaryrefslogtreecommitdiffstats
path: root/gpgmeplug/gpgme-openpgp.c
diff options
context:
space:
mode:
authorMarcus Brinkmann <[email protected]>2002-11-28 19:39:48 +0000
committerMarcus Brinkmann <[email protected]>2002-11-28 19:39:48 +0000
commit1c66649aad21afe144ac9568e47f58b4aff88aba (patch)
tree4b3ce3b61b1f08aa929d4426caad79ee89f5c4eb /gpgmeplug/gpgme-openpgp.c
parent2002-11-25 Marcus Brinkmann <[email protected]> (diff)
downloadgpgme-1c66649aad21afe144ac9568e47f58b4aff88aba.tar.gz
gpgme-1c66649aad21afe144ac9568e47f58b4aff88aba.zip
2002-11-28 Marcus Brinkmann <[email protected]>
* NEWS: Add note about moving "gpgmeplug" to the "cryptplug" package. * README: Remove instructions related to "gpgmeplug". * configure.ac: Remove enable option "gpgmeplug" and automake conditional BUILD_GPGMEPLUG, as well as the status info about it. (GPGMEPLUG): Remove variable. * Makefile.am (gpgmeplug): Remove variable. (SUBDIRS): Remove ${gpgmeplug}. * cryptplug.h, gpgme-openpgp.c, gpgmeplug.dox, gpgme-smime.c, Makefile.am, gpgmeplug.c, ChangeLog: Files removed. CVSk: ----------------------------------------------------------------------
Diffstat (limited to 'gpgmeplug/gpgme-openpgp.c')
-rw-r--r--gpgmeplug/gpgme-openpgp.c60
1 files changed, 0 insertions, 60 deletions
diff --git a/gpgmeplug/gpgme-openpgp.c b/gpgmeplug/gpgme-openpgp.c
deleted file mode 100644
index c8e0234f..00000000
--- a/gpgmeplug/gpgme-openpgp.c
+++ /dev/null
@@ -1,60 +0,0 @@
-#define GPGMEPLUG_PROTOCOL GPGME_PROTOCOL_OpenPGP
-
-/* definitions for signing */
-// 1. opaque signatures (only used for S/MIME)
-#define GPGMEPLUG_OPA_SIGN_INCLUDE_CLEARTEXT false
-#define GPGMEPLUG_OPA_SIGN_MAKE_MIME_OBJECT false
-#define GPGMEPLUG_OPA_SIGN_MAKE_MULTI_MIME false
-#define GPGMEPLUG_OPA_SIGN_CTYPE_MAIN ""
-#define GPGMEPLUG_OPA_SIGN_CDISP_MAIN ""
-#define GPGMEPLUG_OPA_SIGN_CTENC_MAIN ""
-#define GPGMEPLUG_OPA_SIGN_CTYPE_VERSION ""
-#define GPGMEPLUG_OPA_SIGN_CDISP_VERSION ""
-#define GPGMEPLUG_OPA_SIGN_CTENC_VERSION ""
-#define GPGMEPLUG_OPA_SIGN_BTEXT_VERSION ""
-#define GPGMEPLUG_OPA_SIGN_CTYPE_CODE ""
-#define GPGMEPLUG_OPA_SIGN_CDISP_CODE ""
-#define GPGMEPLUG_OPA_SIGN_CTENC_CODE ""
-#define GPGMEPLUG_OPA_SIGN_FLAT_PREFIX ""
-#define GPGMEPLUG_OPA_SIGN_FLAT_SEPARATOR ""
-#define GPGMEPLUG_OPA_SIGN_FLAT_POSTFIX ""
-// 2. detached signatures (used for S/MIME and for OpenPGP)
-#define GPGMEPLUG_DET_SIGN_INCLUDE_CLEARTEXT true
-#define GPGMEPLUG_DET_SIGN_MAKE_MIME_OBJECT true
-#define GPGMEPLUG_DET_SIGN_MAKE_MULTI_MIME true
-#define GPGMEPLUG_DET_SIGN_CTYPE_MAIN "multipart/signed; protocol=\"application/pgp-signature\"; micalg=pgp-sha1"
-#define GPGMEPLUG_DET_SIGN_CDISP_MAIN ""
-#define GPGMEPLUG_DET_SIGN_CTENC_MAIN ""
-#define GPGMEPLUG_DET_SIGN_CTYPE_VERSION ""
-#define GPGMEPLUG_DET_SIGN_CDISP_VERSION ""
-#define GPGMEPLUG_DET_SIGN_CTENC_VERSION ""
-#define GPGMEPLUG_DET_SIGN_BTEXT_VERSION ""
-#define GPGMEPLUG_DET_SIGN_CTYPE_CODE "application/pgp-signature"
-#define GPGMEPLUG_DET_SIGN_CDISP_CODE ""
-#define GPGMEPLUG_DET_SIGN_CTENC_CODE ""
-#define GPGMEPLUG_DET_SIGN_FLAT_PREFIX ""
-#define GPGMEPLUG_DET_SIGN_FLAT_SEPARATOR ""
-#define GPGMEPLUG_DET_SIGN_FLAT_POSTFIX ""
-// 3. common definitions for opaque and detached signing
-#define __GPGMEPLUG_SIGNATURE_CODE_IS_BINARY false
-
-/* definitions for encoding */
-#define GPGMEPLUG_ENC_INCLUDE_CLEARTEXT false
-#define GPGMEPLUG_ENC_MAKE_MIME_OBJECT true
-#define GPGMEPLUG_ENC_MAKE_MULTI_MIME true
-#define GPGMEPLUG_ENC_CTYPE_MAIN "multipart/encrypted; protocol=\"application/pgp-encrypted\""
-#define GPGMEPLUG_ENC_CDISP_MAIN ""
-#define GPGMEPLUG_ENC_CTENC_MAIN ""
-#define GPGMEPLUG_ENC_CTYPE_VERSION "application/pgp-encrypted"
-#define GPGMEPLUG_ENC_CDISP_VERSION "attachment"
-#define GPGMEPLUG_ENC_CTENC_VERSION ""
-#define GPGMEPLUG_ENC_BTEXT_VERSION "Version: 1"
-#define GPGMEPLUG_ENC_CTYPE_CODE "application/octet-stream"
-#define GPGMEPLUG_ENC_CDISP_CODE "inline; filename=\"msg.asc\""
-#define GPGMEPLUG_ENC_CTENC_CODE ""
-#define GPGMEPLUG_ENC_FLAT_PREFIX ""
-#define GPGMEPLUG_ENC_FLAT_SEPARATOR ""
-#define GPGMEPLUG_ENC_FLAT_POSTFIX ""
-#define __GPGMEPLUG_ENCRYPTED_CODE_IS_BINARY false
-
-#include "gpgmeplug.c"