bip_mnemonic2 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/lib/bip_mnemonic.rb +3 -0
- data/lib/bip_mnemonic2/bip_mnemonic.rb +65 -0
- data/lib/bip_mnemonic2/version.rb +6 -0
- data/lib/bip_mnemonic2.rb +4 -0
- data/words/chinese_simplified.txt +2048 -0
- data/words/chinese_traditional.txt +2048 -0
- data/words/english.txt +2048 -0
- data/words/french.txt +2048 -0
- data/words/italian.txt +2048 -0
- data/words/japanese.txt +2048 -0
- data/words/korean.txt +2048 -0
- data/words/spanish.txt +2048 -0
- metadata +81 -0
metadata
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: bip_mnemonic2
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 2.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Sreekanth GS
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: rdoc
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - ">="
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '0'
|
|
19
|
+
type: :development
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - ">="
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: '0'
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: rspec
|
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - ">="
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '0'
|
|
33
|
+
type: :development
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - ">="
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '0'
|
|
40
|
+
description: This implementation conforms to BIP-39/BIP39 and PBKDF2 RFC 2898, and
|
|
41
|
+
has been tested using the test vectors in https://github.com/trezor/python-mnemonic
|
|
42
|
+
and Appendix B of RFC 3962. This is a fork of original bip_mnemonic with updates.
|
|
43
|
+
email: mail@sreekanth.in
|
|
44
|
+
executables: []
|
|
45
|
+
extensions: []
|
|
46
|
+
extra_rdoc_files: []
|
|
47
|
+
files:
|
|
48
|
+
- lib/bip_mnemonic.rb
|
|
49
|
+
- lib/bip_mnemonic2.rb
|
|
50
|
+
- lib/bip_mnemonic2/bip_mnemonic.rb
|
|
51
|
+
- lib/bip_mnemonic2/version.rb
|
|
52
|
+
- words/chinese_simplified.txt
|
|
53
|
+
- words/chinese_traditional.txt
|
|
54
|
+
- words/english.txt
|
|
55
|
+
- words/french.txt
|
|
56
|
+
- words/italian.txt
|
|
57
|
+
- words/japanese.txt
|
|
58
|
+
- words/korean.txt
|
|
59
|
+
- words/spanish.txt
|
|
60
|
+
homepage: https://github.com/davispuh/bip_mnemonic2
|
|
61
|
+
licenses:
|
|
62
|
+
- MIT
|
|
63
|
+
metadata: {}
|
|
64
|
+
rdoc_options: []
|
|
65
|
+
require_paths:
|
|
66
|
+
- lib
|
|
67
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
68
|
+
requirements:
|
|
69
|
+
- - ">="
|
|
70
|
+
- !ruby/object:Gem::Version
|
|
71
|
+
version: '0'
|
|
72
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
|
+
requirements:
|
|
74
|
+
- - ">="
|
|
75
|
+
- !ruby/object:Gem::Version
|
|
76
|
+
version: '0'
|
|
77
|
+
requirements: []
|
|
78
|
+
rubygems_version: 3.6.9
|
|
79
|
+
specification_version: 4
|
|
80
|
+
summary: BipMnemonic words and seed generator based on BIP-39/BIP39. Updated fork.
|
|
81
|
+
test_files: []
|