py-scrypt
py-scrypt copied to clipboard
This is a set of Python bindings for the scrypt key derivation function.
Whenever I try install scrypt I get this error: `fatal error: 'openssl/aes.h' file not found #include ^~~~~~~~~~~~~~~ 1 error generated. error: command '/usr/bin/clang' failed with exit code 1` I have...
After encrypt() when I want to decrypt I get a data is not a valid scrypt-encryption block
I wrote a test to test a function where I use .decrypt(). In this test I use the same MAXTIME (0.5) in encrypt as in the tested function. Despite that...
The example about password hashing based on using the password as a key to encode a random string does not work at all: ```python import os import scrypt # 0.8.24...