openssl-oaep 0.1.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/.gitignore +12 -0
- data/.rspec +2 -0
- data/.travis.yml +5 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +46 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/openssl/oaep.rb +134 -0
- data/lib/openssl/oaep/version.rb +5 -0
- data/openssl-oaep.gemspec +27 -0
- metadata +99 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 8deec9691223b621cf14aca21f14baa6371e67bd
|
4
|
+
data.tar.gz: 5a455ce754c23a34e79cf4d4b146b6108408652f
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 40f3dcad3ccef01858432739ec432fc24f88bc836b865d75d88cf130d20cb44280474698ad5e62203118608cfeb1b6d506a0c8b68ced382332bd75d81d9e4dab
|
7
|
+
data.tar.gz: 5a71d02067015a69e24a5c3ac5422635a8cfe54cb989c2d31d3ce1726b12b11f1e839ecd5cb5b872ab79200d4468fbc93adf80ed340b8b86b73668d4df778409
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2017 Yui Terashima
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,46 @@
|
|
1
|
+
# Openssl::Oaep
|
2
|
+
|
3
|
+
## Installation
|
4
|
+
|
5
|
+
Add this line to your application's Gemfile:
|
6
|
+
|
7
|
+
```ruby
|
8
|
+
gem 'openssl-oaep'
|
9
|
+
```
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install openssl-oaep
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
```ruby
|
22
|
+
require 'openssl'
|
23
|
+
require 'openssl/oaep'
|
24
|
+
|
25
|
+
key = OpenSSL::PKey::RSA.new(1024)
|
26
|
+
text = 'text'
|
27
|
+
label = 'label'
|
28
|
+
md = OpenSSL::Digest::SHA256
|
29
|
+
cipher_text = key.public_encrypt_oaep(text, label, md)
|
30
|
+
raw_text = key.private_decrypt_oaep(cipher_ctext, label, md)
|
31
|
+
```
|
32
|
+
|
33
|
+
## Development
|
34
|
+
|
35
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
36
|
+
|
37
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
38
|
+
|
39
|
+
## Contributing
|
40
|
+
|
41
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/terashi58/openssl-oaep.
|
42
|
+
|
43
|
+
|
44
|
+
## License
|
45
|
+
|
46
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "openssl/oaep"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/lib/openssl/oaep.rb
ADDED
@@ -0,0 +1,134 @@
|
|
1
|
+
require 'openssl/oaep/version'
|
2
|
+
require 'openssl'
|
3
|
+
require 'securerandom'
|
4
|
+
|
5
|
+
module OpenSSL
|
6
|
+
# Extends the OpenSSL library.
|
7
|
+
|
8
|
+
module PKey
|
9
|
+
class RSA
|
10
|
+
def public_encrypt_oaep(str, label = '', md = nil, mgf1md = nil)
|
11
|
+
padded = PKCS1.add_oaep_mgf1(str, n.num_bytes, label, md, mgf1md)
|
12
|
+
public_encrypt(padded, OpenSSL::PKey::RSA::NO_PADDING)
|
13
|
+
end
|
14
|
+
|
15
|
+
def private_decrypt_oaep(str, label = '', md = nil, mgf1md = nil)
|
16
|
+
padded = private_decrypt(str, OpenSSL::PKey::RSA::NO_PADDING)
|
17
|
+
PKCS1.check_oaep_mgf1(padded, label, md, mgf1md)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
module PKCS1
|
23
|
+
def add_oaep_mgf1(str, len, label = '', md = nil, mgf1md = nil)
|
24
|
+
md ||= OpenSSL::Digest::SHA1
|
25
|
+
mgf1md ||= md
|
26
|
+
|
27
|
+
mdlen = md.new.digest_length
|
28
|
+
z_len = len - str.bytesize - 2 * mdlen - 2
|
29
|
+
if z_len < 0
|
30
|
+
raise OpenSSL::PKey::RSAError, 'data too large for key size'
|
31
|
+
end
|
32
|
+
if len < 2 * mdlen + 1
|
33
|
+
raise OpenSSL::PKey::RSAError, 'key size too small'
|
34
|
+
end
|
35
|
+
|
36
|
+
l_hash = md.digest(label)
|
37
|
+
db = l_hash + ([0] * z_len + [1]).pack('C*') + [str].pack('a*')
|
38
|
+
seed = SecureRandom.random_bytes(mdlen)
|
39
|
+
|
40
|
+
masked_db = mgf1_xor(db, seed, mgf1md)
|
41
|
+
masked_seed = mgf1_xor(seed, masked_db, mgf1md)
|
42
|
+
|
43
|
+
[0, masked_seed, masked_db].pack('Ca*a*')
|
44
|
+
end
|
45
|
+
|
46
|
+
module_function :add_oaep_mgf1
|
47
|
+
|
48
|
+
def check_oaep_mgf1(str, label = '', md = nil, mgf1md = nil)
|
49
|
+
md ||= OpenSSL::Digest::SHA1
|
50
|
+
mgf1md ||= md
|
51
|
+
|
52
|
+
mdlen = md.new.digest_length
|
53
|
+
em = str.bytes
|
54
|
+
if em.size < 2 * mdlen + 2
|
55
|
+
raise OpenSSL::PKey::RSAError
|
56
|
+
end
|
57
|
+
|
58
|
+
# Keep constant calculation even if the text is invaid in order to avoid attacks.
|
59
|
+
good = secure_byte_is_zero(em[0])
|
60
|
+
masked_seed = em[1...1+mdlen].pack('C*')
|
61
|
+
masked_db = em[1+mdlen...em.size].pack('C*')
|
62
|
+
|
63
|
+
seed = mgf1_xor(masked_seed, masked_db, mgf1md)
|
64
|
+
db = mgf1_xor(masked_db, seed, mgf1md)
|
65
|
+
db_bytes = db.bytes
|
66
|
+
|
67
|
+
l_hash = md.digest(label)
|
68
|
+
good &= secure_hash_eq(l_hash.bytes, db_bytes[0...mdlen])
|
69
|
+
|
70
|
+
one_index = 0
|
71
|
+
found_one_byte = 0
|
72
|
+
(mdlen...db_bytes.size).each do |i|
|
73
|
+
equals1 = secure_byte_eq(db_bytes[i], 1)
|
74
|
+
equals0 = secure_byte_is_zero(db_bytes[i])
|
75
|
+
one_index = secure_select(~found_one_byte & equals1, i, one_index)
|
76
|
+
found_one_byte |= equals1
|
77
|
+
good &= (found_one_byte | equals0)
|
78
|
+
end
|
79
|
+
|
80
|
+
good &= found_one_byte
|
81
|
+
|
82
|
+
if good.zero?
|
83
|
+
raise OpenSSL::PKey::RSAError
|
84
|
+
end
|
85
|
+
|
86
|
+
db_bytes[one_index+1...db_bytes.size].pack('C*')
|
87
|
+
end
|
88
|
+
|
89
|
+
module_function :check_oaep_mgf1
|
90
|
+
|
91
|
+
def mgf1_xor(out, seed, md)
|
92
|
+
counter = 0
|
93
|
+
out_bytes = out.bytes
|
94
|
+
mask_bytes = []
|
95
|
+
while mask_bytes.size < out_bytes.size
|
96
|
+
mask_bytes += md.digest([seed, counter].pack('a*N')).bytes
|
97
|
+
counter += 1
|
98
|
+
end
|
99
|
+
out_bytes.size.times do |i|
|
100
|
+
out_bytes[i] ^= mask_bytes[i]
|
101
|
+
end
|
102
|
+
out_bytes.pack('C*')
|
103
|
+
end
|
104
|
+
|
105
|
+
module_function :mgf1_xor
|
106
|
+
|
107
|
+
# Constant time comparistion utilities.
|
108
|
+
def secure_byte_is_zero(v)
|
109
|
+
v-1 >> 8
|
110
|
+
end
|
111
|
+
|
112
|
+
def secure_byte_eq(v1, v2)
|
113
|
+
secure_byte_is_zero(v1 ^ v2)
|
114
|
+
end
|
115
|
+
|
116
|
+
def secure_select(mask, eq, ne)
|
117
|
+
(mask & eq) | (~mask & ne)
|
118
|
+
end
|
119
|
+
|
120
|
+
def secure_hash_eq(vs1, vs2)
|
121
|
+
# Assumes the given hash values have the same size.
|
122
|
+
# This check is not constant time, but should not depends on the texts.
|
123
|
+
return 0 unless vs1.size == vs2.size
|
124
|
+
|
125
|
+
res = secure_byte_is_zero(0)
|
126
|
+
(0...vs1.size).each do |i|
|
127
|
+
res &= secure_byte_eq(vs1[i], vs2[i])
|
128
|
+
end
|
129
|
+
res
|
130
|
+
end
|
131
|
+
|
132
|
+
module_function :secure_byte_is_zero, :secure_byte_eq, :secure_select, :secure_hash_eq
|
133
|
+
end
|
134
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'openssl/oaep/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "openssl-oaep"
|
8
|
+
spec.version = Openssl::Oaep::VERSION
|
9
|
+
spec.authors = ["Yui Terashima"]
|
10
|
+
spec.email = ["terashi@freee.co.jp"]
|
11
|
+
|
12
|
+
spec.summary = "Add support for OAEP with SHA2 and labels"
|
13
|
+
spec.description = "Minium extention to Ruby OpenSSL library to support OAEP with SHA2 and labels"
|
14
|
+
spec.homepage = "https://github.com/terashi58/openssl-oaep"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
18
|
+
f.match(%r{^(test|spec|features)/})
|
19
|
+
end
|
20
|
+
spec.bindir = "exe"
|
21
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
22
|
+
spec.require_paths = ["lib"]
|
23
|
+
|
24
|
+
spec.add_development_dependency "bundler", "~> 1.14"
|
25
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
26
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
27
|
+
end
|
metadata
ADDED
@@ -0,0 +1,99 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: openssl-oaep
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Yui Terashima
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-02-16 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.14'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.14'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.0'
|
55
|
+
description: Minium extention to Ruby OpenSSL library to support OAEP with SHA2 and
|
56
|
+
labels
|
57
|
+
email:
|
58
|
+
- terashi@freee.co.jp
|
59
|
+
executables: []
|
60
|
+
extensions: []
|
61
|
+
extra_rdoc_files: []
|
62
|
+
files:
|
63
|
+
- ".gitignore"
|
64
|
+
- ".rspec"
|
65
|
+
- ".travis.yml"
|
66
|
+
- Gemfile
|
67
|
+
- LICENSE.txt
|
68
|
+
- README.md
|
69
|
+
- Rakefile
|
70
|
+
- bin/console
|
71
|
+
- bin/setup
|
72
|
+
- lib/openssl/oaep.rb
|
73
|
+
- lib/openssl/oaep/version.rb
|
74
|
+
- openssl-oaep.gemspec
|
75
|
+
homepage: https://github.com/terashi58/openssl-oaep
|
76
|
+
licenses:
|
77
|
+
- MIT
|
78
|
+
metadata: {}
|
79
|
+
post_install_message:
|
80
|
+
rdoc_options: []
|
81
|
+
require_paths:
|
82
|
+
- lib
|
83
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
84
|
+
requirements:
|
85
|
+
- - ">="
|
86
|
+
- !ruby/object:Gem::Version
|
87
|
+
version: '0'
|
88
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
89
|
+
requirements:
|
90
|
+
- - ">="
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
version: '0'
|
93
|
+
requirements: []
|
94
|
+
rubyforge_project:
|
95
|
+
rubygems_version: 2.6.13
|
96
|
+
signing_key:
|
97
|
+
specification_version: 4
|
98
|
+
summary: Add support for OAEP with SHA2 and labels
|
99
|
+
test_files: []
|