Sort includes and more cleanup and fixes in util/
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
/* public domain sha1 implementation based on rfc3174 and libtomcrypt */
|
||||
#include <stdint.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "../sha1.h"
|
||||
|
||||
static uint32_t rol(uint32_t n, int k) { return (n << k) | (n >> (32-k)); }
|
||||
|
Reference in New Issue
Block a user