Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/crypto/slow-hash.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ void cn_slow_hash_f(void * a, const void * b, size_t c, void * d){
#define restrict
#endif

#define MEMORY (1 << 21) /* 2 MiB */
#define ITER (1 << 20)
#define MEMORY (1 << 22) /* 4 MiB */
#define ITER (1 << 21)
#define AES_BLOCK_SIZE 16
#define AES_KEY_SIZE 32 /*16*/
#define INIT_SIZE_BLK 8
Expand Down