Skip to content

Commit 3677b1b

Browse files
committed
Applied the latest astyle.
1 parent 65e9cac commit 3677b1b

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

features/mbedtls/targets/TARGET_Samsung/sha/sha256_alt.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ int mbedtls_internal_sha256_process(mbedtls_sha256_context *ctx, const unsigned
144144
* <li>1: Use SHA-224.</li></ul>
145145
*/
146146
MBEDTLS_DEPRECATED void mbedtls_sha256_starts(mbedtls_sha256_context *ctx,
147-
int is224);
147+
int is224);
148148

149149
/**
150150
* \brief This function feeds an input buffer into an ongoing
@@ -157,8 +157,8 @@ MBEDTLS_DEPRECATED void mbedtls_sha256_starts(mbedtls_sha256_context *ctx,
157157
* \param ilen The length of the input data.
158158
*/
159159
MBEDTLS_DEPRECATED void mbedtls_sha256_update(mbedtls_sha256_context *ctx,
160-
const unsigned char *input,
161-
size_t ilen);
160+
const unsigned char *input,
161+
size_t ilen);
162162

163163
/**
164164
* \brief This function finishes the SHA-256 operation, and writes
@@ -170,7 +170,7 @@ MBEDTLS_DEPRECATED void mbedtls_sha256_update(mbedtls_sha256_context *ctx,
170170
* \param output The SHA-224or SHA-256 checksum result.
171171
*/
172172
MBEDTLS_DEPRECATED void mbedtls_sha256_finish(mbedtls_sha256_context *ctx,
173-
unsigned char output[32]);
173+
unsigned char output[32]);
174174

175175
/**
176176
* \brief This function processes a single data block within
@@ -183,7 +183,7 @@ MBEDTLS_DEPRECATED void mbedtls_sha256_finish(mbedtls_sha256_context *ctx,
183183
* \param data The buffer holding one block of data.
184184
*/
185185
MBEDTLS_DEPRECATED void mbedtls_sha256_process(mbedtls_sha256_context *ctx,
186-
const unsigned char data[64]);
186+
const unsigned char data[64]);
187187

188188
#undef MBEDTLS_DEPRECATED
189189
#endif /* !MBEDTLS_DEPRECATED_REMOVED */

features/mbedtls/targets/TARGET_Samsung/sha/sha512_alt.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ int mbedtls_internal_sha512_process(mbedtls_sha512_context *ctx, const unsigned
142142
* <li>1: Use SHA-224.</li></ul>
143143
*/
144144
MBEDTLS_DEPRECATED void mbedtls_sha512_starts(mbedtls_sha512_context *ctx,
145-
int is224);
145+
int is224);
146146

147147
/**
148148
* \brief This function feeds an input buffer into an ongoing
@@ -155,8 +155,8 @@ MBEDTLS_DEPRECATED void mbedtls_sha512_starts(mbedtls_sha512_context *ctx,
155155
* \param ilen The length of the input data.
156156
*/
157157
MBEDTLS_DEPRECATED void mbedtls_sha512_update(mbedtls_sha512_context *ctx,
158-
const unsigned char *input,
159-
size_t ilen);
158+
const unsigned char *input,
159+
size_t ilen);
160160

161161
/**
162162
* \brief This function finishes the SHA-512 operation, and writes
@@ -168,7 +168,7 @@ MBEDTLS_DEPRECATED void mbedtls_sha512_update(mbedtls_sha512_context *ctx,
168168
* \param output The SHA-224or SHA-512 checksum result.
169169
*/
170170
MBEDTLS_DEPRECATED void mbedtls_sha512_finish(mbedtls_sha512_context *ctx,
171-
unsigned char output[64]);
171+
unsigned char output[64]);
172172

173173
/**
174174
* \brief This function processes a single data block within
@@ -181,7 +181,7 @@ MBEDTLS_DEPRECATED void mbedtls_sha512_finish(mbedtls_sha512_context *ctx,
181181
* \param data The buffer holding one block of data.
182182
*/
183183
MBEDTLS_DEPRECATED void mbedtls_sha512_process(mbedtls_sha512_context *ctx,
184-
const unsigned char data[128]);
184+
const unsigned char data[128]);
185185

186186
#undef MBEDTLS_DEPRECATED
187187
#endif /* !MBEDTLS_DEPRECATED_REMOVED */

0 commit comments

Comments
 (0)