08-08-2022, 07:27 PM
(This post was last modified: 08-08-2022, 07:27 PM by JunkPassword.)
from https://hashcat.net/forum/thread-5765.html
SCRYPT:N:r:p:base64(salt):base64(digest)
from https://github.com/chrisveness/scrypt-kd...crypt.d.ts
const params = Scrypt.pickParams(0.1); // => e.g. { logN: 15, r: 8, p: 1 }
logN = 15 --> N = 2**15 = 32768
So I understand my input format should start with
SCRYPT:32768:8:1
SCRYPT:N:r:p:base64(salt):base64(digest)
from https://github.com/chrisveness/scrypt-kd...crypt.d.ts
const params = Scrypt.pickParams(0.1); // => e.g. { logN: 15, r: 8, p: 1 }
logN = 15 --> N = 2**15 = 32768
So I understand my input format should start with
SCRYPT:32768:8:1