openpgp 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/AUTHORS +1 -2
- data/CONTRIBUTORS +1 -0
- data/README +45 -13
- data/VERSION +1 -1
- data/lib/openpgp.rb +17 -3
- data/lib/openpgp/algorithm.rb +1 -0
- data/lib/openpgp/armor.rb +37 -9
- data/lib/openpgp/buffer.rb +57 -8
- data/lib/openpgp/cipher.rb +34 -3
- data/lib/openpgp/client/gnupg.rb +230 -20
- data/lib/openpgp/digest.rb +19 -0
- data/lib/openpgp/digest/md5.rb +1 -0
- data/lib/openpgp/digest/rmd160.rb +1 -0
- data/lib/openpgp/digest/sha1.rb +1 -0
- data/lib/openpgp/digest/sha2.rb +4 -0
- data/lib/openpgp/engine.rb +17 -0
- data/lib/openpgp/engine/gnupg.rb +58 -1
- data/lib/openpgp/engine/openssl.rb +13 -1
- data/lib/openpgp/message.rb +32 -2
- data/lib/openpgp/packet.rb +31 -11
- data/lib/openpgp/random.rb +14 -2
- data/lib/openpgp/s2k.rb +70 -2
- data/lib/openpgp/util.rb +14 -10
- data/lib/openpgp/version.rb +12 -4
- metadata +50 -20
- data/Rakefile +0 -5
metadata
CHANGED
@@ -1,38 +1,64 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: openpgp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 0
|
8
|
+
- 3
|
9
|
+
version: 0.0.3
|
5
10
|
platform: ruby
|
6
11
|
authors:
|
7
12
|
- Arto Bendiken
|
8
|
-
- "K\xC3\xA9vin Lacointe"
|
9
13
|
autorequire:
|
10
14
|
bindir: bin
|
11
15
|
cert_chain: []
|
12
16
|
|
13
|
-
date:
|
17
|
+
date: 2010-07-03 00:00:00 +02:00
|
14
18
|
default_executable: openpgp
|
15
19
|
dependencies:
|
16
20
|
- !ruby/object:Gem::Dependency
|
17
|
-
name:
|
18
|
-
|
19
|
-
|
20
|
-
version_requirements: !ruby/object:Gem::Requirement
|
21
|
+
name: yard
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
21
24
|
requirements:
|
22
25
|
- - ">="
|
23
26
|
- !ruby/object:Gem::Version
|
24
|
-
|
25
|
-
|
27
|
+
segments:
|
28
|
+
- 0
|
29
|
+
- 5
|
30
|
+
- 8
|
31
|
+
version: 0.5.8
|
32
|
+
type: :development
|
33
|
+
version_requirements: *id001
|
26
34
|
- !ruby/object:Gem::Dependency
|
27
|
-
name:
|
35
|
+
name: rspec
|
36
|
+
prerelease: false
|
37
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - ">="
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
segments:
|
42
|
+
- 1
|
43
|
+
- 3
|
44
|
+
- 0
|
45
|
+
version: 1.3.0
|
28
46
|
type: :development
|
29
|
-
|
30
|
-
|
47
|
+
version_requirements: *id002
|
48
|
+
- !ruby/object:Gem::Dependency
|
49
|
+
name: open4
|
50
|
+
prerelease: false
|
51
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
31
52
|
requirements:
|
32
53
|
- - ">="
|
33
54
|
- !ruby/object:Gem::Version
|
34
|
-
|
35
|
-
|
55
|
+
segments:
|
56
|
+
- 1
|
57
|
+
- 0
|
58
|
+
- 1
|
59
|
+
version: 1.0.1
|
60
|
+
type: :runtime
|
61
|
+
version_requirements: *id003
|
36
62
|
description: " OpenPGP.rb is a pure-Ruby implementation of the OpenPGP Message Format\n (RFC 4880), the most widely-used e-mail encryption standard in the world.\n"
|
37
63
|
email: arto.bendiken@gmail.com
|
38
64
|
executables:
|
@@ -43,8 +69,8 @@ extra_rdoc_files: []
|
|
43
69
|
|
44
70
|
files:
|
45
71
|
- AUTHORS
|
72
|
+
- CONTRIBUTORS
|
46
73
|
- README
|
47
|
-
- Rakefile
|
48
74
|
- UNLICENSE
|
49
75
|
- VERSION
|
50
76
|
- bin/openpgp
|
@@ -75,7 +101,7 @@ files:
|
|
75
101
|
- lib/openpgp/version.rb
|
76
102
|
- lib/openpgp.rb
|
77
103
|
has_rdoc: false
|
78
|
-
homepage: http://
|
104
|
+
homepage: http://openpgp.rubyforge.org/
|
79
105
|
licenses:
|
80
106
|
- Public Domain
|
81
107
|
post_install_message:
|
@@ -87,18 +113,22 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
87
113
|
requirements:
|
88
114
|
- - ">="
|
89
115
|
- !ruby/object:Gem::Version
|
90
|
-
|
91
|
-
|
116
|
+
segments:
|
117
|
+
- 1
|
118
|
+
- 8
|
119
|
+
- 1
|
120
|
+
version: 1.8.1
|
92
121
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
93
122
|
requirements:
|
94
123
|
- - ">="
|
95
124
|
- !ruby/object:Gem::Version
|
125
|
+
segments:
|
126
|
+
- 0
|
96
127
|
version: "0"
|
97
|
-
version:
|
98
128
|
requirements:
|
99
129
|
- GnuPG >= 1.4.7 (not required, but enables extra functionality)
|
100
130
|
rubyforge_project: openpgp
|
101
|
-
rubygems_version: 1.3.
|
131
|
+
rubygems_version: 1.3.6
|
102
132
|
signing_key:
|
103
133
|
specification_version: 3
|
104
134
|
summary: A pure-Ruby implementation of the OpenPGP Message Format (RFC 4880).
|