mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-04-16 08:42:50 +00:00
Correct code style
Signed-off-by: Thomas Daubney <thomas.daubney@arm.com>
This commit is contained in:
parent
ae5f8cc253
commit
8ac215e482
@ -59,7 +59,7 @@ int mbedtls_md5_starts(mbedtls_md5_context *ctx)
|
||||
}
|
||||
|
||||
static int mbedtls_internal_md5_process(mbedtls_md5_context *ctx,
|
||||
const unsigned char data[64])
|
||||
const unsigned char data[64])
|
||||
{
|
||||
struct {
|
||||
uint32_t X[16], A, B, C, D;
|
||||
|
@ -63,7 +63,7 @@ int mbedtls_ripemd160_starts(mbedtls_ripemd160_context *ctx)
|
||||
* Process one block
|
||||
*/
|
||||
static int mbedtls_internal_ripemd160_process(mbedtls_ripemd160_context *ctx,
|
||||
const unsigned char data[64])
|
||||
const unsigned char data[64])
|
||||
{
|
||||
struct {
|
||||
uint32_t A, B, C, D, E, Ap, Bp, Cp, Dp, Ep, X[16];
|
||||
|
@ -60,7 +60,7 @@ int mbedtls_sha1_starts(mbedtls_sha1_context *ctx)
|
||||
}
|
||||
|
||||
static int mbedtls_internal_sha1_process(mbedtls_sha1_context *ctx,
|
||||
const unsigned char data[64])
|
||||
const unsigned char data[64])
|
||||
{
|
||||
struct {
|
||||
uint32_t temp, W[16], A, B, C, D, E;
|
||||
|
Loading…
x
Reference in New Issue
Block a user