aboutsummaryrefslogtreecommitdiffstats
path: root/camel
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-06-15 04:15:04 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-06-15 04:15:04 +0800
commit557afe41020d808811375ef02e4c1b822da5515e (patch)
tree1c448df7f8b120aa7bd7bd6408cc4f5e6cc9e5d4 /camel
parent46139c6d5d307b7391fe40d6ecc9d3ffb3c68c1b (diff)
downloadgsoc2013-evolution-557afe41020d808811375ef02e4c1b822da5515e.tar
gsoc2013-evolution-557afe41020d808811375ef02e4c1b822da5515e.tar.gz
gsoc2013-evolution-557afe41020d808811375ef02e4c1b822da5515e.tar.bz2
gsoc2013-evolution-557afe41020d808811375ef02e4c1b822da5515e.tar.lz
gsoc2013-evolution-557afe41020d808811375ef02e4c1b822da5515e.tar.xz
gsoc2013-evolution-557afe41020d808811375ef02e4c1b822da5515e.tar.zst
gsoc2013-evolution-557afe41020d808811375ef02e4c1b822da5515e.zip
Updated to use ctx->sign_protocol rather than ctx->protocol.
2002-06-14 Jeffrey Stedfast <fejj@ximian.com> * camel-multipart-signed.c: Updated to use ctx->sign_protocol rather than ctx->protocol. * camel-cipher-context.h: Add an ecnryption protocol member. * camel-pgp-context.c (camel_pgp_context_init): Set the encryption protocol. svn path=/trunk/; revision=17186
Diffstat (limited to 'camel')
-rw-r--r--camel/ChangeLog10
-rw-r--r--camel/camel-cipher-context.h5
-rw-r--r--camel/camel-multipart-signed.c8
-rw-r--r--camel/camel-pgp-context.c7
-rw-r--r--camel/providers/local/camel-mbox-folder.c2
5 files changed, 22 insertions, 10 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 928f87acca..05f518984c 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,3 +1,13 @@
+2002-06-14 Jeffrey Stedfast <fejj@ximian.com>
+
+ * camel-multipart-signed.c: Updated to use ctx->sign_protocol
+ rather than ctx->protocol.
+
+ * camel-cipher-context.h: Add an ecnryption protocol member.
+
+ * camel-pgp-context.c (camel_pgp_context_init): Set the encryption
+ protocol.
+
2002-06-11 Not Zed <NotZed@Ximian.com>
* camel-vtrash-folder.c (camel_vtrash_folder_class_init): Our
diff --git a/camel/camel-cipher-context.h b/camel/camel-cipher-context.h
index c3a6641967..452c093eef 100644
--- a/camel/camel-cipher-context.h
+++ b/camel/camel-cipher-context.h
@@ -51,11 +51,12 @@ typedef struct _CamelCipherContext {
CamelObject parent_object;
struct _CamelCipherContextPrivate *priv;
-
- const char *protocol; /* this MUST be set by implementors */
CamelSession *session;
+ /* these MUST be set by implementors */
+ const char *sign_protocol;
+ const char *encrypt_protocol;
} CamelCipherContext;
typedef struct _CamelCipherContextClass {
diff --git a/camel/camel-multipart-signed.c b/camel/camel-multipart-signed.c
index 841abd0d13..cda9e6d429 100644
--- a/camel/camel-multipart-signed.c
+++ b/camel/camel-multipart-signed.c
@@ -580,7 +580,7 @@ camel_multipart_signed_sign(CamelMultipartSigned *mps, CamelCipherContext *conte
char *type;
/* this needs to be set */
- g_return_val_if_fail(context->protocol != NULL, -1);
+ g_return_val_if_fail(context->sign_protocol != NULL, -1);
prepare_sign(content);
@@ -613,8 +613,8 @@ camel_multipart_signed_sign(CamelMultipartSigned *mps, CamelCipherContext *conte
/* create the signature wrapper object */
signature = camel_mime_part_new();
dw = camel_data_wrapper_new();
- type = alloca(strlen(context->protocol) + 32);
- sprintf(type, "%s; name=signature.asc", context->protocol);
+ type = alloca(strlen(context->sign_protocol) + 32);
+ sprintf(type, "%s; name=signature.asc", context->sign_protocol);
camel_data_wrapper_set_mime_type(dw, type);
camel_stream_reset(sigstream);
camel_data_wrapper_construct_from_stream(dw, sigstream);
@@ -626,7 +626,7 @@ camel_multipart_signed_sign(CamelMultipartSigned *mps, CamelCipherContext *conte
/* setup our mime type and boundary */
mime_type = header_content_type_new("multipart", "signed");
header_content_type_set_param(mime_type, "micalg", camel_cipher_hash_to_id(context, hash));
- header_content_type_set_param(mime_type, "protocol", context->protocol);
+ header_content_type_set_param(mime_type, "protocol", context->sign_protocol);
camel_data_wrapper_set_mime_type_field(CAMEL_DATA_WRAPPER (mps), mime_type);
header_content_type_unref(mime_type);
camel_multipart_set_boundary((CamelMultipart *)mps, NULL);
diff --git a/camel/camel-pgp-context.c b/camel/camel-pgp-context.c
index 246b35d691..0b5916bca2 100644
--- a/camel/camel-pgp-context.c
+++ b/camel/camel-pgp-context.c
@@ -89,10 +89,11 @@ static void
camel_pgp_context_init (CamelPgpContext *context)
{
CamelCipherContext *ciph = (CamelCipherContext *)context;
-
+
context->priv = g_new0 (struct _CamelPgpContextPrivate, 1);
-
- ciph->protocol = "application/pgp-signature";
+
+ ciph->sign_protocol = "application/pgp-signature";
+ ciph->encrypt_protocol = "application/pgp-encrypted";
}
static void
diff --git a/camel/providers/local/camel-mbox-folder.c b/camel/providers/local/camel-mbox-folder.c
index 0d4a61739d..c8065b5f33 100644
--- a/camel/providers/local/camel-mbox-folder.c
+++ b/camel/providers/local/camel-mbox-folder.c
@@ -336,7 +336,7 @@ retry:
return NULL;
}
- /* no frompos, its an error in the library (and we can't do anything with it */
+ /* no frompos, its an error in the library (and we can't do anything with it) */
g_assert(info->frompos != -1);
/* we use an fd instead of a normal stream here - the reason is subtle, camel_mime_part will cache