diff options
| author | amelia squires <[email protected]> | 2025-09-30 18:10:02 -0500 |
|---|---|---|
| committer | amelia squires <[email protected]> | 2025-09-30 18:10:02 -0500 |
| commit | a67dc94484cf9869793fc1861914b800a6559a74 (patch) | |
| tree | 68e9a016380776a6a6d90159722d1514756a4929 /src/hash/blake.h | |
| parent | 795284d3b173473003129882739f371f37059adb (diff) | |
fix indentation!!!
Diffstat (limited to 'src/hash/blake.h')
| -rw-r--r-- | src/hash/blake.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/hash/blake.h b/src/hash/blake.h index 07caf3d..3dacef5 100644 --- a/src/hash/blake.h +++ b/src/hash/blake.h @@ -19,18 +19,18 @@ #define wtf(b) (b[0] << 24)&0xff000000 | (b[1] << 16)&0xff0000 | (b[2] << 8)&0xff00 | b[3]&0xff
struct blake256_hash {
- uint8_t* buffer;
- size_t bufflen;
- uint32_t total, *hash;
- uint64_t compressed;
+ uint8_t* buffer;
+ size_t bufflen;
+ uint32_t total, *hash;
+ uint64_t compressed;
};
#define blake224_hash blake256_hash
struct blake512_hash {
- uint8_t* buffer;
- size_t bufflen;
- uint64_t total, *hash;
- uint64_t compressed;
+ uint8_t* buffer;
+ size_t bufflen;
+ uint64_t total, *hash;
+ uint64_t compressed;
};
#define blake384_hash blake512_hash
@@ -52,4 +52,4 @@ int l_blake512_final(lua_State* L); int l_blake384(lua_State* L);
int l_blake384_init(lua_State* L);
int l_blake384_update(lua_State* L);
-int l_blake384_final(lua_State* L);
\ No newline at end of file +int l_blake384_final(lua_State* L);
|
