summaryrefslogtreecommitdiff
path: root/src/include/sha256.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/sha256.h')
-rw-r--r--src/include/sha256.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/include/sha256.h b/src/include/sha256.h
index e8979c5..8c920b1 100644
--- a/src/include/sha256.h
+++ b/src/include/sha256.h
@@ -1,8 +1,7 @@
#ifndef SHA256_H
#define SHA256_H
-typedef struct
-{
+typedef struct {
uint8_t data[64];
uint32_t datalen;
uint32_t bitlen[2];
@@ -13,6 +12,6 @@ static void sha256_init(sha256_ctx *ctx);
static void sha256_transform(sha256_ctx *ctx, uint8_t *data);
static void sha256_update(sha256_ctx *ctx, uint8_t *data, uint32_t len);
static void sha256_final(uint8_t *hash, sha256_ctx *ctx);
-extern void sha256_hash(char *hash,const char *data, size_t len);
+extern void sha256_hash(char *hash, const char *data, size_t len);
#endif