diff options
| author | dimitri staessens <dimitri.staessens@ugent.be> | 2017-04-16 09:40:32 +0200 | 
|---|---|---|
| committer | dimitri staessens <dimitri.staessens@ugent.be> | 2017-04-16 09:40:32 +0200 | 
| commit | ffc4468030398955ec56dac17934b43adfeab68b (patch) | |
| tree | 5586e971b0924d6a888cbe11ff09f68bcba12edb /include | |
| parent | e543c43c9f911bbe40371e3c6ca5c916cb3365a9 (diff) | |
| download | ouroboros-ffc4468030398955ec56dac17934b43adfeab68b.tar.gz ouroboros-ffc4468030398955ec56dac17934b43adfeab68b.zip  | |
lib: Fix minor things in sha3 implementation
Diffstat (limited to 'include')
| -rw-r--r-- | include/ouroboros/sha3.h | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/include/ouroboros/sha3.h b/include/ouroboros/sha3.h index 17888870..2357b4aa 100644 --- a/include/ouroboros/sha3.h +++ b/include/ouroboros/sha3.h @@ -44,8 +44,8 @@   * or FITNESS FOR A PARTICULAR PURPOSE.  Use this program  at  your own risk!   */ -#ifndef OUROBOROS_SHA3_H -#define OUROBOROS_SHA3_H +#ifndef OUROBOROS_LIB_SHA3_H +#define OUROBOROS_LIB_SHA3_H  #include <unistd.h>  #include <stdint.h> @@ -83,4 +83,4 @@ void rhash_sha3_update(struct sha3_ctx * ctx,  void rhash_sha3_final(struct sha3_ctx * ctx,                        uint8_t *         res); -#endif /* OUROBOROS_SHA3_H */ +#endif /* OUROBOROS_LIB_SHA3_H */  | 
