Skip to content

groundbreaker/phraser

Repository files navigation

💬 phraser

GoDoc

Phraser generates human readable passphrases from customizable word lists.

These passphrases are great for use as temporary passwords or whenever you need a set of user-friendly random words strung together.

Install

go get github.com/groundbreaker/phraser

Usage

import (
  "fmt"

  "github.com/groundbreaker/phraser"
)

func main() {
  p := phraser.New()
  phrase := p.GeneratePhrase()
  fmt.Println(phrase.Passphrase())
}