7 个稳定版本
1.3.1 | 2020年2月7日 |
---|---|
1.3.0 | 2019年7月1日 |
1.2.1 | 2018年10月1日 |
1.2.0 | 2017年9月28日 |
1.0.0 | 2017年3月29日 |
#21 in #brain
585 每月下载量
用于 sstp
69KB
186 代码行
单词列表
Parity 脑钱包单词列表库
RUST
# Cargo.toml
[dependencies]
parity-wordlist = "1.3"
// main.rs
println!("Words: {}", parity_wordlist::random_phrase(12));
let phrase = "violin oblivion cylinder list disarray wobbly fastball showplace oasis patronize septic spearhead";
println!("Valid: {:?}", parity_wordlist::validate_phrase(phrase, 12));
JavaScript
$ npm i @parity/wordlist --save
// main.js
import { randomPhrase, verifyPhrase } from '@parity/wordlist'
console.log(randomPhrase(12))
// This will throw if the phrase is not valid:
verifyPhrase("violin oblivion cylinder list disarray wobbly fastball showplace oasis patronize septic spearhead", 12)
lib.rs
:
Parity 脑钱包生成器。
依赖
~530KB