Style.
Signed-off-by: Pol Henarejos <pol.henarejos@cttc.es>
diff --git a/include/mbedtls/sha3.h b/include/mbedtls/sha3.h
index 278655a..2ddb22a 100644
--- a/include/mbedtls/sha3.h
+++ b/include/mbedtls/sha3.h
@@ -46,8 +46,7 @@
* It identifies the family (SHA3-256, SHA3-512, etc.)
*/
-typedef enum
-{
+typedef enum {
MBEDTLS_SHA3_NONE = 0, /*!< Operation not defined. */
MBEDTLS_SHA3_224, /*!< SHA3-224 */
MBEDTLS_SHA3_256, /*!< SHA3-256 */
@@ -56,8 +55,7 @@
} mbedtls_sha3_id;
struct mbedtls_sha3_context;
-typedef struct mbedtls_sha3_family_functions
-{
+typedef struct mbedtls_sha3_family_functions {
mbedtls_sha3_id id;
uint16_t r;
@@ -88,7 +86,7 @@
*
* \param ctx The SHA-3 context to initialize. This must not be \c NULL.
*/
-void mbedtls_sha3_init( mbedtls_sha3_context *ctx );
+void mbedtls_sha3_init(mbedtls_sha3_context *ctx);
/**
* \brief This function clears a SHA-3 context.
@@ -97,7 +95,7 @@
* case this function returns immediately. If it is not \c NULL,
* it must point to an initialized SHA-3 context.
*/
-void mbedtls_sha3_free( mbedtls_sha3_context *ctx );
+void mbedtls_sha3_free(mbedtls_sha3_context *ctx);
/**
* \brief This function clones the state of a SHA-3 context.
@@ -105,8 +103,8 @@
* \param dst The destination context. This must be initialized.
* \param src The context to clone. This must be initialized.
*/
-void mbedtls_sha3_clone( mbedtls_sha3_context *dst,
- const mbedtls_sha3_context *src );
+void mbedtls_sha3_clone(mbedtls_sha3_context *dst,
+ const mbedtls_sha3_context *src);
/**
* \brief This function starts a SHA-3 checksum
@@ -118,7 +116,7 @@
* \return \c 0 on success.
* \return A negative error code on failure.
*/
-int mbedtls_sha3_starts( mbedtls_sha3_context *ctx, mbedtls_sha3_id id );
+int mbedtls_sha3_starts(mbedtls_sha3_context *ctx, mbedtls_sha3_id id);
/**
* \brief This function feeds an input buffer into an ongoing
@@ -133,9 +131,9 @@
* \return \c 0 on success.
* \return A negative error code on failure.
*/
-int mbedtls_sha3_update( mbedtls_sha3_context *ctx,
- const uint8_t *input,
- size_t ilen );
+int mbedtls_sha3_update(mbedtls_sha3_context *ctx,
+ const uint8_t *input,
+ size_t ilen);
/**
* \brief This function finishes the SHA-3 operation, and writes
@@ -152,8 +150,8 @@
* \return \c 0 on success.
* \return A negative error code on failure.
*/
-int mbedtls_sha3_finish( mbedtls_sha3_context *ctx,
- uint8_t *output, size_t olen );
+int mbedtls_sha3_finish(mbedtls_sha3_context *ctx,
+ uint8_t *output, size_t olen);
/**
* \brief This function calculates the SHA-3
@@ -178,10 +176,10 @@
* \return \c 0 on success.
* \return A negative error code on failure.
*/
-int mbedtls_sha3( mbedtls_sha3_id id, const uint8_t *input,
- size_t ilen,
- uint8_t *output,
- size_t olen );
+int mbedtls_sha3(mbedtls_sha3_id id, const uint8_t *input,
+ size_t ilen,
+ uint8_t *output,
+ size_t olen);
#if defined(MBEDTLS_SELF_TEST)
/**
@@ -191,7 +189,7 @@
*
* \return 0 if successful, or 1 if the test failed.
*/
-int mbedtls_sha3_self_test( int verbose );
+int mbedtls_sha3_self_test(int verbose);
#endif /* MBEDTLS_SELF_TEST */
#ifdef __cplusplus
@@ -199,4 +197,3 @@
#endif
#endif /* mbedtls_sha3.h */
-