aboutsummaryrefslogtreecommitdiff
path: root/sha2.h
diff options
context:
space:
mode:
Diffstat (limited to 'sha2.h')
-rw-r--r--sha2.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/sha2.h b/sha2.h
index 367b736..c3ede29 100644
--- a/sha2.h
+++ b/sha2.h
@@ -12,10 +12,7 @@ extern "C" {
typedef struct {
uint8_t buf[64];
- size_t buf_len;
-
uint32_t h[8];
-
uint64_t num_bytes;
} sha256_t;
@@ -40,10 +37,7 @@ void sha224(const uint8_t * const, const size_t, uint8_t * const);
typedef struct {
uint8_t buf[128];
- size_t buf_len;
-
uint64_t h[8];
-
uint64_t num_bytes;
} sha512_t;