diff options
| author | Rose Hogenson <rosehogenson@posteo.net> | 2025-10-07 08:53:24 -0700 |
|---|---|---|
| committer | Rose Hogenson <rosehogenson@posteo.net> | 2025-10-07 08:53:24 -0700 |
| commit | 2e6f0cfa92f523ca900084c75f398f98ba2e618d (patch) | |
| tree | 554b93b261d7afa895be775ba1e3d031691f1412 /tools/hashpw | |
| parent | 20761675e284e1c31014f79a5c029dce5dc4a99b (diff) | |
| download | roseh.moe-2e6f0cfa92f523ca900084c75f398f98ba2e618d.tar.zst | |
Print password correctly
Diffstat (limited to 'tools/hashpw')
| -rw-r--r-- | tools/hashpw/hashpw.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/hashpw/hashpw.go b/tools/hashpw/hashpw.go index f6662fa..ac9745d 100644 --- a/tools/hashpw/hashpw.go +++ b/tools/hashpw/hashpw.go @@ -22,7 +22,7 @@ func hashpw() error { if err != nil { return err } - fmt.Printf("%x%x\n", hash, salt) + fmt.Printf("notepad-password=%x%x\n", hash, salt) return nil } |
