Pulse/cmd/hashpw/main.go
rcourtman f9ca2c0e68 Add hashpw utility for generating password hashes
Simple CLI utility to generate bcrypt password hashes for admin users.

Usage: hashpw <password>

This utility helps administrators generate properly hashed passwords
for use in configuration files or manual user setup.
2025-11-06 16:46:56 +00:00

24 lines
345 B
Go

package main
import (
"fmt"
"os"
"github.com/rcourtman/pulse-go-rewrite/internal/auth"
)
func main() {
if len(os.Args) < 2 {
fmt.Println("Usage: hashpw <password>")
os.Exit(1)
}
password := os.Args[1]
hash, err := auth.HashPassword(password)
if err != nil {
fmt.Printf("Error: %v\n", err)
os.Exit(1)
}
fmt.Println(hash)
}