aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2003-11-05 08:44:28 +0800
committerMichael Zucci <zucchi@src.gnome.org>2003-11-05 08:44:28 +0800
commitc960f0e4f88888fc3a3923cc36a97820da0aaf87 (patch)
tree5713527deaf5720912ffd2e1a476761bf49ae279
parentd0375813d86145111e6bc5da07e565157de451e9 (diff)
downloadgsoc2013-evolution-c960f0e4f88888fc3a3923cc36a97820da0aaf87.tar
gsoc2013-evolution-c960f0e4f88888fc3a3923cc36a97820da0aaf87.tar.gz
gsoc2013-evolution-c960f0e4f88888fc3a3923cc36a97820da0aaf87.tar.bz2
gsoc2013-evolution-c960f0e4f88888fc3a3923cc36a97820da0aaf87.tar.lz
gsoc2013-evolution-c960f0e4f88888fc3a3923cc36a97820da0aaf87.tar.xz
gsoc2013-evolution-c960f0e4f88888fc3a3923cc36a97820da0aaf87.tar.zst
gsoc2013-evolution-c960f0e4f88888fc3a3923cc36a97820da0aaf87.zip
changed to use ciphercontext directly to sign the message, no
2003-11-03 Not Zed <NotZed@Ximian.com> * e-msg-composer.c (build_message): changed to use ciphercontext directly to sign the message, no multipart-signed usage. (build_message): do the same for multipart/encryption for gpg encrypting. svn path=/trunk/; revision=23188
-rw-r--r--composer/ChangeLog6
-rw-r--r--composer/e-msg-composer.c102
2 files changed, 35 insertions, 73 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog
index 7d4d468820..4df5e2d218 100644
--- a/composer/ChangeLog
+++ b/composer/ChangeLog
@@ -1,3 +1,9 @@
+2003-11-03 Not Zed <NotZed@Ximian.com>
+
+ * e-msg-composer.c (build_message): changed to use ciphercontext
+ directly to sign the message, no multipart-signed usage.
+ (build_message): do the same for multipart/encryption for gpg encrypting.
+
2003-11-03 Ettore Perazzoli <ettore@ximian.com>
* e-msg-composer-hdrs.h (SELECT_NAMES_OAFIID): Append "_2".
diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c
index 0ccd9e46e7..60c65ca9d7 100644
--- a/composer/e-msg-composer.c
+++ b/composer/e-msg-composer.c
@@ -589,51 +589,42 @@ build_message (EMsgComposer *composer, gboolean save_html_object_data)
}
if (composer->pgp_sign) {
- CamelMultipartSigned *mps;
- CamelCipherContext *cipher;
-
+ CamelMimePart *npart = camel_mime_part_new();
+
cipher = mail_crypto_get_pgp_cipher_context(hdrs->account);
- mps = camel_multipart_signed_new ();
- camel_multipart_signed_sign (mps, cipher, part, pgp_userid, CAMEL_CIPHER_HASH_SHA1, &ex);
- camel_object_unref (cipher);
+ camel_cipher_sign(cipher, pgp_userid, CAMEL_CIPHER_HASH_SHA1, part, npart, &ex);
+ camel_object_unref(cipher);
- if (camel_exception_is_set (&ex)) {
- camel_object_unref (mps);
+ if (camel_exception_is_set(&ex)) {
+ camel_object_unref(npart);
goto exception;
}
- camel_object_unref (part);
- part = camel_mime_part_new ();
- camel_multipart_set_boundary (CAMEL_MULTIPART (mps), NULL);
- camel_medium_set_content_object (CAMEL_MEDIUM (part), (CamelDataWrapper *) mps);
- camel_object_unref (mps);
+ camel_object_unref(part);
+ part = npart;
}
if (composer->pgp_encrypt) {
- CamelMultipartEncrypted *mpe;
-
+ CamelMimePart *npart = camel_mime_part_new();
+
/* check to see if we should encrypt to self, NB gets removed immediately after use */
if (hdrs->account && hdrs->account->pgp_encrypt_to_self && pgp_userid)
g_ptr_array_add (recipients, (char *)pgp_userid);
- mpe = camel_multipart_encrypted_new ();
- cipher = mail_crypto_get_pgp_cipher_context (hdrs->account);
- camel_multipart_encrypted_encrypt (mpe, part, cipher, pgp_userid, recipients, &ex);
+ cipher = mail_crypto_get_pgp_cipher_context (hdrs->account);
+ camel_cipher_encrypt(cipher, pgp_userid, recipients, part, npart, &ex);
camel_object_unref (cipher);
if (hdrs->account && hdrs->account->pgp_encrypt_to_self && pgp_userid)
g_ptr_array_set_size(recipients, recipients->len - 1);
if (camel_exception_is_set (&ex)) {
- camel_object_unref (mpe);
+ camel_object_unref(npart);
goto exception;
}
camel_object_unref (part);
- part = camel_mime_part_new ();
- camel_multipart_set_boundary (CAMEL_MULTIPART (mpe), NULL);
- camel_medium_set_content_object (CAMEL_MEDIUM (part), (CamelDataWrapper *) mpe);
- camel_object_unref (mpe);
+ part = npart;
}
if (from)
@@ -668,63 +659,28 @@ build_message (EMsgComposer *composer, gboolean save_html_object_data)
}
if (composer->smime_sign) {
- /* if we're also encrypting, envelope-sign rather than clear-sign */
- if (composer->smime_encrypt) {
- CamelMimePart *spart;
- CamelStream *filter, *mem;
- CamelMimeFilter *canon_filter;
-
- /* FIXME: this should be part of cipher::sign() api */
- mem = camel_stream_mem_new();
- filter = (CamelStream *)camel_stream_filter_new_with_stream(mem);
-
- canon_filter = camel_mime_filter_canon_new(CAMEL_MIME_FILTER_CANON_STRIP|CAMEL_MIME_FILTER_CANON_CRLF);
- camel_stream_filter_add((CamelStreamFilter *)filter, (CamelMimeFilter *)canon_filter);
- camel_object_unref(canon_filter);
+ CamelMimePart *npart = camel_mime_part_new();
- camel_data_wrapper_write_to_stream((CamelDataWrapper *)part, (CamelStream *)filter);
- camel_stream_flush(filter);
- camel_object_unref(filter);
- camel_stream_reset(mem);
+ cipher = camel_smime_context_new(session);
- cipher = camel_smime_context_new(session);
+ /* if we're also encrypting, envelope-sign rather than clear-sign */
+ if (composer->smime_encrypt) {
camel_smime_context_set_sign_mode((CamelSMIMEContext *)cipher, CAMEL_SMIME_SIGN_ENVELOPED);
camel_smime_context_set_encrypt_key((CamelSMIMEContext *)cipher, TRUE, hdrs->account->smime_encrypt_key);
+ } else if (hdrs->account && hdrs->account->smime_encrypt_key && *hdrs->account->smime_encrypt_key) {
+ camel_smime_context_set_encrypt_key((CamelSMIMEContext *)cipher, TRUE, hdrs->account->smime_encrypt_key);
+ }
- spart = camel_mime_part_new();
- camel_cipher_sign(cipher, hdrs->account->smime_sign_key, CAMEL_CIPHER_HASH_SHA1, mem, spart, &ex);
- camel_object_unref(mem);
- camel_object_unref(cipher);
- if (camel_exception_is_set(&ex)) {
- camel_object_unref(spart);
- goto exception;
- }
- camel_object_unref(part);
- part = spart;
- } else {
- CamelMultipartSigned *mps;
-
- cipher = camel_smime_context_new(session);
- if (hdrs->account && hdrs->account->smime_encrypt_key && *hdrs->account->smime_encrypt_key)
- camel_smime_context_set_encrypt_key((CamelSMIMEContext *)cipher, TRUE, hdrs->account->smime_encrypt_key);
-
- /* FIXME: this should probably be part of the cipher::sign() api */
- mps = camel_multipart_signed_new();
- camel_multipart_signed_sign(mps, cipher, part, hdrs->account->smime_sign_key, CAMEL_CIPHER_HASH_SHA1, &ex);
- camel_object_unref(cipher);
-
- if (camel_exception_is_set(&ex)) {
- camel_object_unref(mps);
- goto exception;
- }
-
- camel_object_unref(part);
- part = camel_mime_part_new ();
- camel_multipart_set_boundary (CAMEL_MULTIPART (mps), NULL);
- camel_medium_set_content_object (CAMEL_MEDIUM (part), (CamelDataWrapper *) mps);
+ camel_cipher_sign(cipher, hdrs->account->smime_sign_key, CAMEL_CIPHER_HASH_SHA1, part, npart, &ex);
+ camel_object_unref(cipher);
- camel_object_unref (mps);
+ if (camel_exception_is_set(&ex)) {
+ camel_object_unref(npart);
+ goto exception;
}
+
+ camel_object_unref(part);
+ part = npart;
}
if (composer->smime_encrypt) {