diff options
| author | Quentin Carbonneaux | 2021-11-22 21:08:16 +0100 |
|---|---|---|
| committer | Quentin Carbonneaux | 2021-11-22 21:08:16 +0100 |
| commit | 90f0b63f77a642061222aa90dfecf3eac5a2e895 (patch) | |
| tree | b3cac563d2d9368581ed98d1e1a9d338ff50beb3 | |
| parent | 2ad1fa26bd8803b1a8f4f3ccf4105708a8456a21 (diff) | |
nits
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | Makefile | 1 | ||||
| -rw-r--r-- | sdar/all.h | 4 |
3 files changed, 1 insertions, 5 deletions
@@ -1,7 +1,6 @@ *.sw[po] tags perf.data* -sdar/blake3.h sdar/lib/nacl-20110221 sdar/lib/timestamp memex/memex @@ -22,7 +22,6 @@ CRYPTOOBJ = $(CRYPTOSRC:sdar/%.c=obj/%.o) V = @ SRC = $(wildcard sdar/*.c) -OPT = sdar/sha256.c sdar/smix.c sdar/scrypt.c OBJ = $(SRC:sdar/%.c=obj/%.o) SANFLAGS = -fsanitize=address,undefined @@ -229,13 +229,11 @@ int getlevel(Ilevel *, uchar *, long); /* hmac.c */ void hmac_blake3(uchar *, long, uchar *, long, hmac_t); -/* scrypt */ +/* lib/crypto */ void crypto_scrypt_smix(uint8_t *, size_t, uint64_t, void *, void *); int crypto_scrypt( uint8_t *passwd, size_t passwdlen, uint8_t *salt, size_t saltlen, uint64_t N, uint32_t _r, uint32_t _p, uint8_t *buf, size_t buflen); int crypto_scrypt_test(); - -/* sha256.c */ void pbkdf2_sha256(uchar *p, size_t np, uint8_t *s, size_t ns, uint64_t c, uint8_t *buf, size_t dkLen); |
