aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-multipart-signed.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2003-11-05 08:42:40 +0800
committerMichael Zucci <zucchi@src.gnome.org>2003-11-05 08:42:40 +0800
commitd0375813d86145111e6bc5da07e565157de451e9 (patch)
tree3ae20f9fdd14847b7fda402668c5bca59aff4559 /camel/camel-multipart-signed.c
parent0c29bfd43c82a09225733235db2d9cd9a79b07ae (diff)
downloadgsoc2013-evolution-d0375813d86145111e6bc5da07e565157de451e9.tar
gsoc2013-evolution-d0375813d86145111e6bc5da07e565157de451e9.tar.gz
gsoc2013-evolution-d0375813d86145111e6bc5da07e565157de451e9.tar.bz2
gsoc2013-evolution-d0375813d86145111e6bc5da07e565157de451e9.tar.lz
gsoc2013-evolution-d0375813d86145111e6bc5da07e565157de451e9.tar.xz
gsoc2013-evolution-d0375813d86145111e6bc5da07e565157de451e9.tar.zst
gsoc2013-evolution-d0375813d86145111e6bc5da07e565157de451e9.zip
new (unfinished) api to peek inside smime parts to tell us whats in it.
2003-11-05 Not Zed <NotZed@Ximian.com> * camel-smime-context.c (camel_smime_context_describe_part): new (unfinished) api to peek inside smime parts to tell us whats in it. 2003-11-03 Not Zed <NotZed@Ximian.com> * camel-gpg-context.c (gpg_encrypt): Make this output the full multipart/encrypted part, not just the encrypted content part. * camel-cipher-context.c (camel_cipher_sign): change to output full mime part, not just a stream. (camel_cipher_canonical_to_stream): utility function to canonicalise a mimepart to a stream. * camel-smime-context.c (sm_encode_cmsmessage): removed. (sm_sign): change interface to output a full mime-part, not just a part of a mime part in multipart/signed mode. svn path=/trunk/; revision=23187
Diffstat (limited to 'camel/camel-multipart-signed.c')
-rw-r--r--camel/camel-multipart-signed.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/camel/camel-multipart-signed.c b/camel/camel-multipart-signed.c
index bc5e363c8d..2647ba6591 100644
--- a/camel/camel-multipart-signed.c
+++ b/camel/camel-multipart-signed.c
@@ -592,6 +592,8 @@ prepare_sign(CamelMimePart *mime_part)
int
camel_multipart_signed_sign(CamelMultipartSigned *mps, CamelCipherContext *context, CamelMimePart *content, const char *userid, CamelCipherHash hash, CamelException *ex)
{
+ abort();
+#if 0
CamelMimeFilter *canon_filter;
CamelStream *mem;
CamelStreamFilter *filter;
@@ -649,7 +651,7 @@ camel_multipart_signed_sign(CamelMultipartSigned *mps, CamelCipherContext *conte
camel_object_unref((CamelObject *) ((CamelDataWrapper *)mps)->stream);
((CamelDataWrapper *)mps)->stream = NULL;
}
-
+#endif
return 0;
}