Created
September 22, 2016 12:48
-
-
Save msplival/82a0849ab570836df2ab3219976041be to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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