aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-pgp-mime.h
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-06-22 03:11:57 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-06-22 03:11:57 +0800
commitea6569368591c16ec4ef6398016a7d33579a793d (patch)
treef00390fc8b6602aee81971fcd58fe98bbb9f45d5 /camel/camel-pgp-mime.h
parent9534ce2e95c2d9886c4cc1e3fdd9e416629422ce (diff)
downloadgsoc2013-evolution-ea6569368591c16ec4ef6398016a7d33579a793d.tar
gsoc2013-evolution-ea6569368591c16ec4ef6398016a7d33579a793d.tar.gz
gsoc2013-evolution-ea6569368591c16ec4ef6398016a7d33579a793d.tar.bz2
gsoc2013-evolution-ea6569368591c16ec4ef6398016a7d33579a793d.tar.lz
gsoc2013-evolution-ea6569368591c16ec4ef6398016a7d33579a793d.tar.xz
gsoc2013-evolution-ea6569368591c16ec4ef6398016a7d33579a793d.tar.zst
gsoc2013-evolution-ea6569368591c16ec4ef6398016a7d33579a793d.zip
New source files implementing the CamelCipherContext class for gnupg.
2002-06-21 Jeffrey Stedfast <fejj@ximian.com> * camel-gpg-context.[c,h]: New source files implementing the CamelCipherContext class for gnupg. * camel-pgp-context.c (camel_pgp_context_new): Return a CamelCipherContext. * camel-pgp-mime.c (camel_pgp_mime_part_decrypt): Take a CamelCipherContext argument rather than a CamelPgpContext since we now have a CamelGpgContext also. (camel_pgp_mime_part_encrypt): Same. (camel_pgp_mime_part_verify): Same. (camel_pgp_mime_part_sign): Same. svn path=/trunk/; revision=17251
Diffstat (limited to 'camel/camel-pgp-mime.h')
-rw-r--r--camel/camel-pgp-mime.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/camel/camel-pgp-mime.h b/camel/camel-pgp-mime.h
index 7f7928967d..e5dec18cce 100644
--- a/camel/camel-pgp-mime.h
+++ b/camel/camel-pgp-mime.h
@@ -38,22 +38,22 @@ extern "C" {
gboolean camel_pgp_mime_is_rfc2015_signed (CamelMimePart *part);
gboolean camel_pgp_mime_is_rfc2015_encrypted (CamelMimePart *part);
-void camel_pgp_mime_part_sign (CamelPgpContext *context,
+void camel_pgp_mime_part_sign (CamelCipherContext *cipher,
CamelMimePart **mime_part,
const char *userid,
CamelCipherHash hash,
CamelException *ex);
-CamelCipherValidity *camel_pgp_mime_part_verify (CamelPgpContext *context,
+CamelCipherValidity *camel_pgp_mime_part_verify (CamelCipherContext *cipher,
CamelMimePart *mime_part,
CamelException *ex);
-void camel_pgp_mime_part_encrypt (CamelPgpContext *context,
+void camel_pgp_mime_part_encrypt (CamelCipherContext *cipher,
CamelMimePart **mime_part,
GPtrArray *recipients,
CamelException *ex);
-CamelMimePart *camel_pgp_mime_part_decrypt (CamelPgpContext *context,
+CamelMimePart *camel_pgp_mime_part_decrypt (CamelCipherContext *cipher,
CamelMimePart *mime_part,
CamelException *ex);