Skip to content

Instantly share code, notes, and snippets.

@msplival
Created September 22, 2016 12:48
Show Gist options
  • Save msplival/82a0849ab570836df2ab3219976041be to your computer and use it in GitHub Desktop.
Save msplival/82a0849ab570836df2ab3219976041be 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