diff options
author | Hiroshi SHIBATA <[email protected]> | 2022-07-30 17:03:13 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2022-07-30 17:03:13 +0900 |
commit | 39dc9f9093901d40d2998653948d5da38b18ee2c (patch) | |
tree | 5d2d205803a8d0c3fddb824889f5c03b14feaaa9 /ext/digest/sha2/sha2.h | |
parent | 8a65cf3b61c60e4cb886f59a73ff6db44364bfa9 (diff) |
Revert "* expand tabs. [ci skip]"
This reverts commit 8a65cf3b61c60e4cb886f59a73ff6db44364bfa9.
Diffstat (limited to 'ext/digest/sha2/sha2.h')
-rw-r--r-- | ext/digest/sha2/sha2.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/digest/sha2/sha2.h b/ext/digest/sha2/sha2.h index c2a29b99ad..e58f15ae12 100644 --- a/ext/digest/sha2/sha2.h +++ b/ext/digest/sha2/sha2.h @@ -120,14 +120,14 @@ typedef unsigned long long uint64_t; /* 8-bytes (64-bits) */ * cc -DSHA2_USE_INTTYPES_H ... */ typedef struct _SHA256_CTX { - uint32_t state[8]; - uint64_t bitcount; - uint8_t buffer[SHA256_BLOCK_LENGTH]; + uint32_t state[8]; + uint64_t bitcount; + uint8_t buffer[SHA256_BLOCK_LENGTH]; } SHA256_CTX; typedef struct _SHA512_CTX { - uint64_t state[8]; - uint64_t bitcount[2]; - uint8_t buffer[SHA512_BLOCK_LENGTH]; + uint64_t state[8]; + uint64_t bitcount[2]; + uint8_t buffer[SHA512_BLOCK_LENGTH]; } SHA512_CTX; typedef SHA512_CTX SHA384_CTX; |