This also updates the test.sh script to use an assert. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
12 lines
214 B
Bash
12 lines
214 B
Bash
#!/bin/sh
|
|
|
|
[ "$1" = python3-bcrypt ] || exit 0
|
|
|
|
python3 - << 'EOF'
|
|
|
|
import bcrypt
|
|
password = b"super secret password"
|
|
hashed = bcrypt.hashpw(password, bcrypt.gensalt())
|
|
assert bcrypt.checkpw(password, hashed)
|
|
|
|
EOF
|