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-cipher-context.h | |
parent | a44c898aa11aa100793b89def41e0ca048332644 (diff) | |
download | gsoc2013-evolution-0e81a5651c920e674fe7d0f9b6af6a6a1385835f.tar.gz 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-cipher-context.h')
-rw-r--r-- | camel/camel-cipher-context.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/camel/camel-cipher-context.h b/camel/camel-cipher-context.h index 452c093eef..296d7e5b39 100644 --- a/camel/camel-cipher-context.h +++ b/camel/camel-cipher-context.h @@ -65,9 +65,6 @@ typedef struct _CamelCipherContextClass { int (*sign) (CamelCipherContext *ctx, const char *userid, CamelCipherHash hash, CamelStream *istream, CamelStream *ostream, CamelException *ex); - int (*clearsign) (CamelCipherContext *context, const char *userid, CamelCipherHash hash, - CamelStream *istream, CamelStream *ostream, CamelException *ex); - CamelCipherValidity * (*verify) (CamelCipherContext *context, CamelCipherHash hash, CamelStream *istream, CamelStream *sigstream, CamelException *ex); @@ -94,9 +91,6 @@ void camel_cipher_context_construct (CamelCipherContext *context int camel_cipher_sign (CamelCipherContext *context, const char *userid, CamelCipherHash hash, CamelStream *istream, CamelStream *ostream, CamelException *ex); -int camel_cipher_clearsign (CamelCipherContext *context, const char *userid, CamelCipherHash hash, - CamelStream *istream, CamelStream *ostream, CamelException *ex); - CamelCipherValidity *camel_cipher_verify (CamelCipherContext *context, CamelCipherHash hash, CamelStream *istream, CamelStream *sigstream, CamelException *ex); @@ -109,8 +103,8 @@ int camel_cipher_decrypt (CamelCipherContext *context, CamelStr CamelException *ex); /* cipher context util routines */ -CamelCipherHash camel_cipher_id_to_hash(CamelCipherContext *context, const char *id); -const char * camel_cipher_hash_to_id(CamelCipherContext *context, CamelCipherHash hash); +CamelCipherHash camel_cipher_id_to_hash (CamelCipherContext *context, const char *id); +const char * camel_cipher_hash_to_id (CamelCipherContext *context, CamelCipherHash hash); /* CamelCipherValidity utility functions */ CamelCipherValidity *camel_cipher_validity_new (void); |