Skip to content

Instantly share code, notes, and snippets.

@freyes
Forked from msplival/passwordator.go
Created September 22, 2016 12:49
Show Gist options
  • Save freyes/7f539e404755b5fcd986304c4b1a1515 to your computer and use it in GitHub Desktop.
Save freyes/7f539e404755b5fcd986304c4b1a1515 to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"os"
"github.com/juju/utils"
)
const MIN_LEN = 30
func main() {
if (len(os.Args) < 2) {
fmt.Printf("Error: you need to specify the password!\n")
return
}
if (len(os.Args[1]) < MIN_LEN) {
fmt.Printf("Error:Password size must be >= %d chars\n", MIN_LEN)
return
}
fmt.Println(utils.AgentPasswordHash(os.Args[1]))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment