gooddata-crypto 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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: dbc375842b1d1e037ab7bd485cf507a9af42dad982fadc45fd79d5c73c62cc45
4
+ data.tar.gz: c2e844f3b8ed72d48178d5b6f10d8924417b9a7ef2eca00894c42c41fa0d4376
5
+ SHA512:
6
+ metadata.gz: a43bb62089902982997fd222d6a4632e735bcec44a6a272719b85536f02680c089db317cc1f262809aadb3db5b0e86293fb2d9895193575d17c17f0fca3c0fb2
7
+ data.tar.gz: 607e67eba957713fb07aa068eeb9686cfed874652bd2a9163704a93f8282907ab1825907b943718f4eef4c360b111e2b925a8b3ab593cc8873a747b201695b8c
@@ -0,0 +1,12 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
12
+ junit.xml
data/.rspec ADDED
@@ -0,0 +1,5 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
4
+ --format RspecJunitFormatter
5
+ --out junit.xml
@@ -0,0 +1,7 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.3
5
+ - 2.4
6
+ - 2.5
7
+ before_install: gem install bundler -v 1.16.1
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/gooddata/gooddata-ruby-decrypt" }
4
+
5
+ # Specify your gem's dependencies in gooddata-crypto.gemspec
6
+ gemspec
@@ -0,0 +1,44 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ gooddata-crypto (0.1.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ coderay (1.1.2)
10
+ diff-lcs (1.3)
11
+ method_source (0.9.0)
12
+ pry (0.11.3)
13
+ coderay (~> 1.1.0)
14
+ method_source (~> 0.9.0)
15
+ rake (10.4.2)
16
+ rspec (3.8.0)
17
+ rspec-core (~> 3.8.0)
18
+ rspec-expectations (~> 3.8.0)
19
+ rspec-mocks (~> 3.8.0)
20
+ rspec-core (3.8.0)
21
+ rspec-support (~> 3.8.0)
22
+ rspec-expectations (3.8.1)
23
+ diff-lcs (>= 1.2.0, < 2.0)
24
+ rspec-support (~> 3.8.0)
25
+ rspec-mocks (3.8.0)
26
+ diff-lcs (>= 1.2.0, < 2.0)
27
+ rspec-support (~> 3.8.0)
28
+ rspec-support (3.8.0)
29
+ rspec_junit_formatter (0.3.0)
30
+ rspec-core (>= 2, < 4, != 2.12.0)
31
+
32
+ PLATFORMS
33
+ ruby
34
+
35
+ DEPENDENCIES
36
+ bundler (~> 1.16)
37
+ gooddata-crypto!
38
+ pry
39
+ rake (~> 10.0)
40
+ rspec (~> 3.0)
41
+ rspec_junit_formatter (~> 0.3.0)
42
+
43
+ BUNDLED WITH
44
+ 1.16.1
@@ -0,0 +1,22 @@
1
+ (BSD License)
2
+
3
+ Copyright (c) 2010-2017 GoodData Corporation. All rights reserved.
4
+
5
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided
6
+ that the following conditions are met:
7
+
8
+ * Redistributions of source code must retain the above copyright notice, this list of conditions and
9
+ the following disclaimer.
10
+ * Redistributions in binary form must reproduce the above copyright notice, this list of conditions
11
+ and the following disclaimer in the documentation and/or other materials provided with the distribution.
12
+ * Neither the name of the GoodData Corporation nor the names of its contributors may be used to endorse
13
+ or promote products derived from this software without specific prior written permission.
14
+
15
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS
16
+ OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
17
+ AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
18
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
21
+ WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,45 @@
1
+ # Gooddata::Crypto
2
+
3
+ Simple library which usesl openssl to provide encryption and decryption functionality.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'gooddata-crypto'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install gooddata-crypto
20
+
21
+ ## Usage
22
+
23
+ encrypt:
24
+ ```
25
+ Gooddata::Crypto.encrypt('Some secret string','supersecretencryptionkey')
26
+ ```
27
+
28
+ decrypt:
29
+ ```
30
+ Gooddata::Crypto.decrypt("Vc+OmT3aA5BimjAt3alfFpz5wMSlVQHLwoFZLZ6FpeLcIZDEVHr9ET4Q55R0\nfm6W\n",'othersecretkey')
31
+ ```
32
+
33
+ ## Development
34
+
35
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
36
+
37
+ 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/gooddata/gooddata-ruby-decrypt.
42
+
43
+ ## License
44
+
45
+ The gem is available as open source under the terms of the [BSD License](https://opensource.org/licenses/BSD-3-Clause).
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "gooddata/crypto"
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__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,29 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "gooddata/crypto/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "gooddata-crypto"
8
+ spec.version = Gooddata::Crypto::VERSION
9
+ spec.authors = ["Petr Gadorek"]
10
+ spec.email = ["petr.gadorek@gooddata.com"]
11
+
12
+ spec.summary = "Sipmle library for encryption/decryption of string"
13
+ spec.description = "This gem uses openssl to encrypt or decrypt string based on key"
14
+ spec.homepage = "https://github.com/gooddata/gooddata-ruby-decrypt"
15
+ spec.license = "BSD"
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.16"
25
+ spec.add_development_dependency "rake", "~> 10.0"
26
+ spec.add_development_dependency "rspec", "~> 3.0"
27
+ spec.add_development_dependency 'rspec_junit_formatter', '~> 0.3.0'
28
+ spec.add_development_dependency 'pry'
29
+ end
@@ -0,0 +1,46 @@
1
+ require 'base64'
2
+ require 'openssl'
3
+ require 'gooddata/crypto/version'
4
+
5
+ module Gooddata
6
+ module Crypto
7
+ class << self
8
+ # encrypts data with the given key. returns a binary data with the
9
+ # unhashed random iv in the first 16 bytes
10
+ def encrypt(data, key)
11
+ cipher = OpenSSL::Cipher::Cipher.new('aes-256-cbc')
12
+ cipher.encrypt
13
+ cipher.key = key = Digest::SHA256.digest(key)
14
+ random_iv = cipher.random_iv
15
+ cipher.iv = Digest::SHA256.digest(random_iv + key)[0..15]
16
+ encrypted = cipher.update(data)
17
+ encrypted << cipher.final
18
+ # add unhashed iv to front of encrypted data
19
+
20
+ Base64.encode64(random_iv + encrypted)
21
+ end
22
+
23
+ def decrypt(database64, key)
24
+ return '' if key.nil? || key.empty?
25
+
26
+ data = Base64.decode64(database64)
27
+
28
+ cipher = OpenSSL::Cipher::Cipher.new('aes-256-cbc')
29
+ cipher.decrypt
30
+ cipher.key = cipher_key = Digest::SHA256.digest(key)
31
+ random_iv = data[0..15] # extract iv from first 16 bytes
32
+ data = data[16..data.size - 1]
33
+ cipher.iv = Digest::SHA256.digest(random_iv + cipher_key)[0..15]
34
+ begin
35
+ decrypted = cipher.update(data)
36
+ decrypted << cipher.final
37
+ rescue
38
+ puts 'Error'
39
+ return nil
40
+ end
41
+
42
+ decrypted
43
+ end
44
+ end
45
+ end
46
+ end
@@ -0,0 +1,5 @@
1
+ module Gooddata
2
+ module Crypto
3
+ VERSION = "0.1.0"
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,127 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gooddata-crypto
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Petr Gadorek
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2018-11-14 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.16'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.16'
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
+ - !ruby/object:Gem::Dependency
56
+ name: rspec_junit_formatter
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: 0.3.0
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 0.3.0
69
+ - !ruby/object:Gem::Dependency
70
+ name: pry
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ description: This gem uses openssl to encrypt or decrypt string based on key
84
+ email:
85
+ - petr.gadorek@gooddata.com
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - ".gitignore"
91
+ - ".rspec"
92
+ - ".travis.yml"
93
+ - Gemfile
94
+ - Gemfile.lock
95
+ - LICENSE.txt
96
+ - README.md
97
+ - Rakefile
98
+ - bin/console
99
+ - bin/setup
100
+ - gooddata-crypto.gemspec
101
+ - lib/gooddata/crypto.rb
102
+ - lib/gooddata/crypto/version.rb
103
+ homepage: https://github.com/gooddata/gooddata-ruby-decrypt
104
+ licenses:
105
+ - BSD
106
+ metadata: {}
107
+ post_install_message:
108
+ rdoc_options: []
109
+ require_paths:
110
+ - lib
111
+ required_ruby_version: !ruby/object:Gem::Requirement
112
+ requirements:
113
+ - - ">="
114
+ - !ruby/object:Gem::Version
115
+ version: '0'
116
+ required_rubygems_version: !ruby/object:Gem::Requirement
117
+ requirements:
118
+ - - ">="
119
+ - !ruby/object:Gem::Version
120
+ version: '0'
121
+ requirements: []
122
+ rubyforge_project:
123
+ rubygems_version: 2.7.4
124
+ signing_key:
125
+ specification_version: 4
126
+ summary: Sipmle library for encryption/decryption of string
127
+ test_files: []