]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
lib-dcrypt: Reformatted istream-decrypt.h.
authorStephan Bosch <stephan.bosch@dovecot.fi>
Sat, 17 Feb 2018 19:49:14 +0000 (20:49 +0100)
committerStephan Bosch <stephan.bosch@dovecot.fi>
Sun, 18 Mar 2018 13:57:16 +0000 (14:57 +0100)
src/lib-dcrypt/istream-decrypt.h

index 34a22290ac4e935cec0e86b3a49b4db6ccde8f11..021719ea1c14ca53031bbc219d3a891f092a47da 100644 (file)
@@ -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