Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generalize api #21

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ payload = "The quick brown fox jumps over the lazy dog."
encrypted = JWE.encrypt(payload, key)
puts encrypted

plaintext = JWE.decrypt(encrypted, key)
plaintext, header = JWE.decrypt(encrypted, key)
puts plaintext #"The quick brown fox jumps over the lazy dog."
```

Expand All @@ -39,7 +39,7 @@ payload = "The quick brown fox jumps over the lazy dog."
encrypted = JWE.encrypt(payload, key, enc: 'A192GCM')
puts encrypted

plaintext = JWE.decrypt(encrypted, key)
plaintext, header = JWE.decrypt(encrypted, key)
puts plaintext #"The quick brown fox jumps over the lazy dog."
```

Expand All @@ -54,7 +54,7 @@ payload = "The quick brown fox jumps over the lazy dog."
encrypted = JWE.encrypt(payload, key, alg: 'dir')
puts encrypted

plaintext = JWE.decrypt(encrypted, key)
plaintext, header = JWE.decrypt(encrypted, key)
puts plaintext #"The quick brown fox jumps over the lazy dog."
```

Expand All @@ -69,7 +69,7 @@ payload = "The quick brown fox jumps over the lazy dog."
encrypted = JWE.encrypt(payload, key, zip: 'DEF')
puts encrypted

plaintext = JWE.decrypt(encrypted, key)
plaintext, header = JWE.decrypt(encrypted, key)
puts plaintext #"The quick brown fox jumps over the lazy dog."
```

Expand All @@ -83,8 +83,11 @@ payload = "The quick brown fox jumps over the lazy dog."

# In this case we add a copyright line to the headers (it can be anything you like
# just remember it is plaintext).
encrypted = JWE.encrypt(payload, key, copyright: 'This is my stuff! All rights reserved')
encrypted = JWE.encrypt(payload, key, copyright: "This is my stuff! All rights reserved")
puts encrypted

plaintext, header = JWE.decrypt(encrypted, key)
puts header[:copyright] #"This is my stuff! All rights reserved"
```

## Available Algorithms
Expand Down
2 changes: 2 additions & 0 deletions jwe.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,7 @@ Gem::Specification.new do |s|
s.add_development_dependency 'rspec'
s.add_development_dependency 'rake'
s.add_development_dependency 'simplecov'
s.add_development_dependency 'simplecov-json'
s.add_development_dependency 'codeclimate-test-reporter'
s.add_development_dependency 'codacy-coverage'
end
2 changes: 1 addition & 1 deletion lib/jwe.rb
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def decrypt(payload, key)

plaintext = cipher.decrypt(ciphertext, payload.split('.').first)

apply_zip(header, plaintext, :decompress)
[apply_zip(header, plaintext, :decompress), header]
end

def check_params(header, key)
Expand Down
2 changes: 1 addition & 1 deletion lib/jwe/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module JWE
VERSION = '0.4.0'.freeze
VERSION = '1.4.0'.freeze
end
7 changes: 1 addition & 6 deletions spec/jwe/alg_spec.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
require 'jwe/alg/dir'
require 'jwe/alg/rsa_oaep'
require 'jwe/alg/rsa15'
require 'jwe/alg/a128_kw'
require 'jwe/alg/a192_kw'
require 'jwe/alg/a256_kw'
require 'spec_helper'
require 'openssl'

describe JWE::Alg do
Expand Down
2 changes: 1 addition & 1 deletion spec/jwe/base64_spec.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require 'jwe/base64'
require 'spec_helper'

module JWE
describe Base64 do
Expand Down
7 changes: 1 addition & 6 deletions spec/jwe/enc_spec.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
require 'jwe/enc/a128cbc_hs256'
require 'jwe/enc/a192cbc_hs384'
require 'jwe/enc/a256cbc_hs512'
require 'jwe/enc/a128gcm'
require 'jwe/enc/a192gcm'
require 'jwe/enc/a256gcm'
require 'spec_helper'

describe JWE::Enc do
describe '.for' do
Expand Down
2 changes: 2 additions & 0 deletions spec/jwe/serialization_spec.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
require 'spec_helper'

describe JWE::Serialization::Compact do
describe '#encode' do
it 'returns components base64ed and joined with a dot' do
Expand Down
2 changes: 1 addition & 1 deletion spec/jwe/zip_spec.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require 'jwe/zip/def'
require 'spec_helper'

describe JWE::Zip do
describe '.for' do
Expand Down
12 changes: 6 additions & 6 deletions spec/jwe_spec.rb
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
require 'spec_helper'

describe JWE do
let(:plaintext) { 'The true sign of intelligence is not knowledge but imagination.' }
let(:rsa_key) { OpenSSL::PKey::RSA.new File.read(File.dirname(__FILE__) + '/keys/rsa.pem') }
let(:password) { SecureRandom.random_bytes(64) }

it 'roundtrips' do
encrypted = JWE.encrypt(plaintext, rsa_key)
result = JWE.decrypt(encrypted, rsa_key)
result, header = JWE.decrypt(encrypted, rsa_key)

expect(result).to eq plaintext
end

describe 'when using DEF compression' do
it 'roundtrips' do
encrypted = JWE.encrypt(plaintext, rsa_key, zip: 'DEF')
result = JWE.decrypt(encrypted, rsa_key)
result, header = JWE.decrypt(encrypted, rsa_key)

expect(result).to eq plaintext
end
Expand All @@ -23,7 +25,7 @@
it 'roundtrips' do
aes_password = SecureRandom.random_bytes(16)
encrypted = JWE.encrypt(plaintext, aes_password, alg: 'dir')
result = JWE.decrypt(encrypted, aes_password)
result, header = JWE.decrypt(encrypted, aes_password)

expect(result).to eq plaintext
end
Expand All @@ -32,9 +34,7 @@
describe 'when using extra headers' do
it 'roundtrips' do
encrypted = JWE.encrypt(plaintext, rsa_key, kid: 'some-kid-1')
result = JWE.decrypt(encrypted, rsa_key)
header, = JWE::Serialization::Compact.decode(encrypted)
header = JSON.parse(header)
result, header = JWE.decrypt(encrypted, rsa_key)

expect(header['kid']).to eq 'some-kid-1'
expect(result).to eq plaintext
Expand Down
16 changes: 14 additions & 2 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,21 @@
require 'rspec'
require 'simplecov'
SimpleCov.start
require 'simplecov-json'
require 'codeclimate-test-reporter'
require 'codacy-coverage'

require 'rspec'
require 'jwe'

Codacy::Reporter.start

SimpleCov.configure do
root File.join(File.dirname(__FILE__), '..')
project_name 'Ruby JWE - Ruby JSON Web Encryption implementation'
add_filter 'spec'
end

SimpleCov.start if ENV['COVERAGE']

RSpec.configure do |config|
config.order = 'random'
end