info.txt |
|
92 |
scrypt.cpp |
Some rough relations between scrypt parameters and runtime.
Denote here by stime(N,r,p) the msec it takes to run scrypt.
Emperically for smaller sizes:
stime(N,8*r,p) / stime(N,r,p) is ~ 6-7
stime(N,r,8*p) / stime(N,r,8*p) is ~ 7
stime(2*N,r,p) / stime(N,r,p) is ~ 2
Compute stime(8192,1,1) as baseline and extrapolate
|
6405 |
scrypt.h |
Scrypt key derivation function (RFC 7914)
|
3752 |