def create_secret_box(password, username): key = bcrypt.kdf( password.encode('utf-8'), username, # this is the salt KEYLEN, ITERATIONS ) nonce ...
確定! 回上一頁