From: Stephan Bosch Date: Sat, 17 Feb 2018 19:49:14 +0000 (+0100) Subject: lib-dcrypt: Reformatted istream-decrypt.h. X-Git-Tag: 2.3.9~2065 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=51c3910e5f4a60bb405913991b77d0386bc8ed44;p=thirdparty%2Fdovecot%2Fcore.git lib-dcrypt: Reformatted istream-decrypt.h. --- diff --git a/src/lib-dcrypt/istream-decrypt.h b/src/lib-dcrypt/istream-decrypt.h index 34a22290ac..021719ea1c 100644 --- a/src/lib-dcrypt/istream-decrypt.h +++ b/src/lib-dcrypt/istream-decrypt.h @@ -17,13 +17,15 @@ i_stream_decrypt_get_key_callback_t(const char *pubkey_digest, const char **error_r, void *context); struct istream * -i_stream_create_decrypt(struct istream *input, struct dcrypt_private_key *priv_key); +i_stream_create_decrypt(struct istream *input, + struct dcrypt_private_key *priv_key); /* create stream for reading plain encrypted data with no header or MAC. do not call dcrypt_ctx_sym_init */ struct istream * -i_stream_create_sym_decrypt(struct istream *input, struct dcrypt_context_symmetric *ctx); +i_stream_create_sym_decrypt(struct istream *input, + struct dcrypt_context_symmetric *ctx); /* Decrypt the istream. When a private key is needed, the callback will be @@ -33,7 +35,9 @@ i_stream_create_decrypt_callback(struct istream *input, i_stream_decrypt_get_key_callback_t *callback, void *context); -enum decrypt_istream_format i_stream_encrypt_get_format(const struct istream *input); -enum io_stream_encrypt_flags i_stream_encrypt_get_flags(const struct istream *input); +enum decrypt_istream_format +i_stream_encrypt_get_format(const struct istream *input); +enum io_stream_encrypt_flags +i_stream_encrypt_get_flags(const struct istream *input); #endif