“Python Bcrypt” Ответ

Python Bcrypt

#!/usr/bin/env python

import bcrypt

passwd = b's$cret12'

salt = bcrypt.gensalt()
hashed = bcrypt.hashpw(passwd, salt)

if bcrypt.checkpw(passwd, hashed):
    print("match")
else:
    print("does not match")
Jerome Scott

Установите Bcrypt

npm install bcryptjs
Clever Crane

Установите Bcrypt

npm install bcrypt
Clever Crane

Ответы похожие на “Python Bcrypt”

Вопросы похожие на “Python Bcrypt”

Больше похожих ответов на “Python Bcrypt” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования