Can a salt be a random ASCII string or be derived from one?
I’m using a KDF (PBKDF2HMAC) to generate a Fernet key from a given password, but to do so I also need to generate and store a salt.
import base64
import os
from cryptography.fernet import Fernet
from cryptography.hazmat.ba… Continue reading Can a salt be a random ASCII string or be derived from one?