MnemonicSwift/Examples/MnemonicKitExample.playground/Contents.swift

9 lines
200 B
Swift
Raw Normal View History

2019-01-27 10:54:32 -08:00
// Copyright Keefer Taylor, 2019
2019-01-17 17:26:54 -08:00
import MnemonicKit
let strength = 128
if let mnemonic = Mnemonic.generateMnemonic(strength: strength) {
2019-01-27 10:54:32 -08:00
print("A mnemonic of strength \(strength): \(mnemonic)")
2019-01-17 17:26:54 -08:00
}