diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-06-27 03:20:32 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-06-27 03:20:32 +0800 |
commit | 0e81a5651c920e674fe7d0f9b6af6a6a1385835f (patch) | |
tree | 700e6a99e7cc551a99f70a9174fd523206640321 /camel/camel-gpg-context.c | |
parent | a44c898aa11aa100793b89def41e0ca048332644 (diff) | |
download | gsoc2013-evolution-0e81a5651c920e674fe7d0f9b6af6a6a1385835f.tar gsoc2013-evolution-0e81a5651c920e674fe7d0f9b6af6a6a1385835f.tar.gz gsoc2013-evolution-0e81a5651c920e674fe7d0f9b6af6a6a1385835f.tar.bz2 gsoc2013-evolution-0e81a5651c920e674fe7d0f9b6af6a6a1385835f.tar.lz gsoc2013-evolution-0e81a5651c920e674fe7d0f9b6af6a6a1385835f.tar.xz gsoc2013-evolution-0e81a5651c920e674fe7d0f9b6af6a6a1385835f.tar.zst gsoc2013-evolution-0e81a5651c920e674fe7d0f9b6af6a6a1385835f.zip |
Removed (never did anything anyway).
2002-06-26 Jeffrey Stedfast <fejj@ximian.com>
* camel-gpg-context.c (gpg_clearsign): Removed (never did anything
anyway).
* camel-pgp-context.c (pgp_clearsign): Removed.
* camel-cipher-context.c (camel_cipher_clearsign): Removed unused
method.
svn path=/trunk/; revision=17297
Diffstat (limited to 'camel/camel-gpg-context.c')
-rw-r--r-- | camel/camel-gpg-context.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/camel/camel-gpg-context.c b/camel/camel-gpg-context.c index 1c7daaa72b..e4101071b4 100644 --- a/camel/camel-gpg-context.c +++ b/camel/camel-gpg-context.c @@ -53,9 +53,6 @@ static void camel_gpg_context_finalise (CamelObject *obj); static int gpg_sign (CamelCipherContext *ctx, const char *userid, CamelCipherHash hash, CamelStream *istream, CamelStream *ostream, CamelException *ex); -static int gpg_clearsign (CamelCipherContext *context, const char *userid, - CamelCipherHash hash, CamelStream *istream, - CamelStream *ostream, CamelException *ex); static CamelCipherValidity *gpg_verify (CamelCipherContext *context, CamelCipherHash hash, CamelStream *istream, CamelStream *sigstream, CamelException *ex); @@ -99,7 +96,6 @@ camel_gpg_context_class_init (CamelGpgContextClass *klass) parent_class = CAMEL_CIPHER_CONTEXT_CLASS (camel_type_get_global_classfuncs (camel_cipher_context_get_type ())); cipher_class->sign = gpg_sign; - cipher_class->clearsign = gpg_clearsign; cipher_class->verify = gpg_verify; cipher_class->encrypt = gpg_encrypt; cipher_class->decrypt = gpg_decrypt; @@ -1202,15 +1198,6 @@ gpg_sign (CamelCipherContext *context, const char *userid, CamelCipherHash hash, } -static int -gpg_clearsign (CamelCipherContext *context, const char *userid, - CamelCipherHash hash, CamelStream *istream, - CamelStream *ostream, CamelException *ex) -{ - return -1; -} - - static char * swrite (CamelStream *istream) { |