Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

Using the Python Package crypt

import crypt
crypt.crypt("gitpod")
'$6$kr6wIhxB7CykAXc9$j6EF3LxyvQx83oKsDeRLwnVRmDQfFmHgr4MeNOXZu8ydkVueVnPu1DzTtdIJNMK.9a38ScG4Zpn9hCNtmg9KB/'

Using the Python Package bcrypt

import bcrypt
bcrypt.hashpw(b"gitpod", bcrypt.gensalt())
b'$2b$12$fACqka4PM4aPL8JNyGGyfucIHaYnFc//yBBtJ/.FMH/2e565WAgY.'