Skip to content

CikeQiu/CKMnemonic

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CKMnemonic

An implementation of BIP39 used Swift

Version License Platform

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Usage

do {
    let language: CKMnemonicLanguageType = .chinese
    let mnemonic = try CKMnemonic.generateMnemonic(strength: 128, language: language)
    print(mnemonic)
    let seed = try CKMnemonic.deterministicSeedString(from: mnemonic, passphrase: "Test", language: language)
    print(seed)
} catch {
    print(error)
}

Requirements

Xcode 8.3.2 with Swift 3.0

Installation

CKMnemonic is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "CKMnemonic"

Author

work_cocody@hotmail.com, qiuhongyang@askcoin.org

License

CKMnemonic is available under the MIT license. See the LICENSE file for more info.