A Swift library for generating cryptographically strong passphrases using the Diceware algorithm. Based on Golang library https://github.com/sethvargo/go-diceware
https://en.wikipedia.org/wiki/Diceware
The wordlists are generated from the EFF's lists: https://www.eff.org/deeplinks/2016/07/new-wordlists-random-passphrases
gilled mold childless empirical eldest autism
flatness marina subscript sphinx poker illusion
passover unrefined justice barista afford nuclear
var diceware = Diceware()
do {
let phrase = try diceware.generate()
print("Generated phrase: \(phrase)")
} catch {
print("Error: \(error)")
}