🐾 rigby

How to generate a Rigby password hash

For example, use the following code at https://play.golang.org

package main

import (\"fmt\"; \"golang.org/x/crypto/bcrypt\")

func main() {
	bytes, _ :=     bcrypt.GenerateFromPassword([]byte(\"YourPassword\"), bcrypt.MinCost)
	fmt.Println(string(bytes))
}

Then send the password hash to Luke and ask him nicely to change your password.

The password hash isn’t your password, but if your password isn’t secure, then it can be brute-forced by someone who has the hash. So maybe don’t post the hash here.

Comments

luke on 2021-06-01

Wow thanks, this is very helpful

new reply

new comment