package main
import (
"fmt"
"golang.org/x/crypto/bcrypt"
)
func main() {
password := "password"
hash, err := bcrypt.GenerateFromPassword([]byte(password), 12) // SECURITY(REM-035): Aligned with password_service.go bcryptCost=12
if err != nil {
panic(err)
}
fmt.Println(string(hash))