sixword 0.3.0 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.rspec +2 -0
- data/.travis.yml +9 -0
- data/README.md +2 -0
- data/bin/sixword +4 -0
- data/lib/sixword/version.rb +1 -1
- data/sixword.gemspec +2 -0
- data/spec/sixword/hex_spec.rb +1 -0
- data/spec/sixword_spec.rb +1 -0
- metadata +26 -36
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: fc9f0517fd216584e553dc2e71e960bdd0b25848
|
4
|
+
data.tar.gz: 31a69ccaf02db205bf290d384fe705491ac6be11
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 6d6cfc2a72925aaa382748c85d7e803668f5df4b9a41a6a1421ea3a26ffa738650f04013bb33ee6a6f9f5957cb09d1bf2c87610825249291d158d7d1846374c9
|
7
|
+
data.tar.gz: 952b8f2e92c338863d39e39e59a83c41aae3e5c24e592ea770426d7353561624474be41a96869fd67c833b5f4963cda738d79e58cc89d9731c3b5700322c7c10
|
data/.rspec
ADDED
data/.travis.yml
ADDED
data/README.md
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
# Sixword
|
2
2
|
|
3
|
+
![Build status](https://travis-ci.org/ab/sixword.svg)
|
4
|
+
|
3
5
|
Sixword implements the 6-word binary encoding created for S/Key (tm) and
|
4
6
|
standardized by RFC 2289, RFC 1760, and RFC 1751. Binary data may be
|
5
7
|
encoded using a dictionary of 2048 English words of 1-4 characters in
|
data/bin/sixword
CHANGED
data/lib/sixword/version.rb
CHANGED
data/sixword.gemspec
CHANGED
data/spec/sixword/hex_spec.rb
CHANGED
data/spec/sixword_spec.rb
CHANGED
metadata
CHANGED
@@ -1,71 +1,66 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sixword
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
5
|
-
prerelease:
|
4
|
+
version: 0.3.1
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Andy Brody
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2015-03-21 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: bundler
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
16
|
requirements:
|
19
|
-
- - ~>
|
17
|
+
- - "~>"
|
20
18
|
- !ruby/object:Gem::Version
|
21
19
|
version: '1.3'
|
22
20
|
type: :development
|
23
21
|
prerelease: false
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
23
|
requirements:
|
27
|
-
- - ~>
|
24
|
+
- - "~>"
|
28
25
|
- !ruby/object:Gem::Version
|
29
26
|
version: '1.3'
|
30
27
|
- !ruby/object:Gem::Dependency
|
31
28
|
name: rake
|
32
29
|
requirement: !ruby/object:Gem::Requirement
|
33
|
-
none: false
|
34
30
|
requirements:
|
35
|
-
- -
|
31
|
+
- - ">="
|
36
32
|
- !ruby/object:Gem::Version
|
37
33
|
version: '0'
|
38
34
|
type: :development
|
39
35
|
prerelease: false
|
40
36
|
version_requirements: !ruby/object:Gem::Requirement
|
41
|
-
none: false
|
42
37
|
requirements:
|
43
|
-
- -
|
38
|
+
- - ">="
|
44
39
|
- !ruby/object:Gem::Version
|
45
40
|
version: '0'
|
46
41
|
- !ruby/object:Gem::Dependency
|
47
42
|
name: rspec
|
48
43
|
requirement: !ruby/object:Gem::Requirement
|
49
|
-
none: false
|
50
44
|
requirements:
|
51
|
-
- -
|
45
|
+
- - ">="
|
52
46
|
- !ruby/object:Gem::Version
|
53
47
|
version: '0'
|
54
48
|
type: :development
|
55
49
|
prerelease: false
|
56
50
|
version_requirements: !ruby/object:Gem::Requirement
|
57
|
-
none: false
|
58
51
|
requirements:
|
59
|
-
- -
|
52
|
+
- - ">="
|
60
53
|
- !ruby/object:Gem::Version
|
61
54
|
version: '0'
|
62
|
-
description:
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
55
|
+
description: |2
|
56
|
+
Sixword implements the 6-word binary encoding created for S/Key (tm) and
|
57
|
+
standardized by RFC 2289, RFC 1760, and RFC 1751. Binary data may be
|
58
|
+
encoded using a dictionary of 2048 English words of 1-4 characters in
|
59
|
+
length. Each block of 64 bits is encoded using 6 words, which includes 2
|
60
|
+
parity bits. It is ideal for transmitting binary data such as cryptographic
|
61
|
+
keys where humans must communicate or enter the values.
|
62
|
+
|
63
|
+
See also: Bubble Babble, PGP Word List, Diceware, Base64, Base32
|
69
64
|
email:
|
70
65
|
- abrody@abrody.com
|
71
66
|
executables:
|
@@ -73,7 +68,9 @@ executables:
|
|
73
68
|
extensions: []
|
74
69
|
extra_rdoc_files: []
|
75
70
|
files:
|
76
|
-
- .gitignore
|
71
|
+
- ".gitignore"
|
72
|
+
- ".rspec"
|
73
|
+
- ".travis.yml"
|
77
74
|
- Gemfile
|
78
75
|
- LICENSE.txt
|
79
76
|
- README.md
|
@@ -94,33 +91,26 @@ files:
|
|
94
91
|
homepage: https://github.com/ab/sixword
|
95
92
|
licenses:
|
96
93
|
- GPL-3
|
94
|
+
metadata: {}
|
97
95
|
post_install_message:
|
98
96
|
rdoc_options: []
|
99
97
|
require_paths:
|
100
98
|
- lib
|
101
99
|
required_ruby_version: !ruby/object:Gem::Requirement
|
102
|
-
none: false
|
103
100
|
requirements:
|
104
|
-
- -
|
101
|
+
- - ">="
|
105
102
|
- !ruby/object:Gem::Version
|
106
|
-
version:
|
107
|
-
segments:
|
108
|
-
- 0
|
109
|
-
hash: -2360590348015650263
|
103
|
+
version: 1.9.3
|
110
104
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
111
|
-
none: false
|
112
105
|
requirements:
|
113
|
-
- -
|
106
|
+
- - ">="
|
114
107
|
- !ruby/object:Gem::Version
|
115
108
|
version: '0'
|
116
|
-
segments:
|
117
|
-
- 0
|
118
|
-
hash: -2360590348015650263
|
119
109
|
requirements: []
|
120
110
|
rubyforge_project:
|
121
|
-
rubygems_version:
|
111
|
+
rubygems_version: 2.2.2
|
122
112
|
signing_key:
|
123
|
-
specification_version:
|
113
|
+
specification_version: 4
|
124
114
|
summary: Implementation of RFC 2289 compatible 6-word encoding
|
125
115
|
test_files:
|
126
116
|
- spec/rspec_helper.rb
|