An implementation of BIP39 in Swift. MnemonicKit supports both English and Chinese mnemonics.
This library is a fork of CKMnemonic. This fork provides several conveniences over the original library, namely:
- Converting throwing APIs to non-throwing nullable APIs
- Additional helper methods
- Code clarity and documentation
- Additional Testing
- Support on OSX
TezosKit supports installation via CocoaPods. You can depened on MnemonicKit by adding the following to your Podfile:
pod "MnemonicKit"
If you use Carthage to manage your dependencies, simply add
MnemonicKit to your Cartfile
:
github "keefertaylor/MnemonicKit"
If you use Carthage to build your dependencies, make sure you have added CryptoSwift.framework
to the "Linked Frameworks and Libraries" section of your target, and have included them in your Carthage framework copying build phase.
let englishMnemonic = Mnemonic.generateMnemonic(strength: 64, language: .english)
let chineseMnemonic = Mnemonic.generateMnemonic(strength: 128, language: .chinese)
let hexRepresentation: String = ...
let mnemonic = Mnemonic.mnemonicString(from: hexRepresentation)
print("Mnemonic: \(mnemonic)\nFrom hex string: \(hexRepresentation)")
let englishMnemonic = Mnemonic.generateMnemonic(strength: 64, language: .english)
let passphrase: String = ...
let deterministicSeedString = Mnemonic.deterministicSeedString(from: mnemonicString,
passphrase: passphrase,
language: .english)
print("Deterministic Seed String: \(deterministicSeedString)")
I am happy to accept pull requests.
To get set up:
$ brew install xcodegen # if you don't already have it
$ xcodegen generate # Generate an XCode project from Project.yml
$ open MnemonicKit.xcodeproj
MIT