eaesy 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: f9642438541ffa350a9090a8fc5ac02c6143d70f
4
+ data.tar.gz: ebf7481c919171ea6a4f9f027b55523d81902a89
5
+ SHA512:
6
+ metadata.gz: 3306f1b5d73ae7aa369fcfe5e3c470265acf2366c20e428e4f453d685ab1671d116a082e67a01970cc1be0333f3f22f594393432f593d93ed1c95b54356c5bb5
7
+ data.tar.gz: c97f4b6273cc5fefe5cfb253b4ef4ec79e73ee0a267ed890469ef91f1de3e52789f51d0cf3992b45d2aed6e7c2065a7729a1fbd9f3dbf81ecf81acb29be4f416
data/.gitignore ADDED
@@ -0,0 +1,10 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.gem
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in eaesy.gemspec
6
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 johnpwillman
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,58 @@
1
+ # Eaesy
2
+
3
+ Eaesy is a gem for quickly encrypting and decrypting a string value using the AES 256 CBC algorithm. All encrypted values and initialization vectors are string-representations of binary values for ease of use.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'eaesy'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install eaesy
20
+
21
+ ## Usage
22
+
23
+ ### Encrypt a string
24
+
25
+ Without existing Initialization Vector
26
+
27
+ ```ruby
28
+ eaesy = Eaesy::Cipher.new('YOUR_ENCRYPTION_KEY')
29
+ enc_hash = eaesy.encrypt('SOME_STRING')
30
+ encrypted_text = enc_hash[:encrypted_secret]
31
+ initialization_vector = enc_hash[:iv]
32
+ ```
33
+
34
+ With existing Initialization Vector
35
+
36
+ ```ruby
37
+ eaesy = Eaesy::Cipher.new('YOUR_ENCRYPTION_KEY')
38
+ enc_hash = eaesy.encrypt('SOME_STRING', initialization_vector)
39
+ encrypted_text = enc_hash[:encrypted_secret]
40
+ ```
41
+
42
+ >warn
43
+ >Don't forget to store the initialization vector for later decrypting!
44
+
45
+ ### Decrypt a previously encrypted value
46
+
47
+ ```ruby
48
+ eaesy = Eaesy::Cipher.new('YOUR_ENCRYPTION_KEY')
49
+ decrypted_text = eaesy.decrypt(encrypted_text, initialization_vector)
50
+ ```
51
+
52
+ ## Contributing
53
+
54
+ Bug reports and pull requests are welcome on GitHub at https://github.com/johnpwillman/eaesy.
55
+
56
+ ## License
57
+
58
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "eaesy"
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
@@ -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
data/eaesy.gemspec ADDED
@@ -0,0 +1,35 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "eaesy/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "eaesy"
8
+ spec.version = Eaesy::VERSION
9
+ spec.authors = ["johnatjawsdb"]
10
+ spec.email = ["john@jawsdb.com"]
11
+
12
+ spec.summary = %q{Simple string encryption/decryption using AES 256 CBC}
13
+ spec.description = %q{Encrypts a string value using the AES 256 CBC algorithm and decrypts it back again.}
14
+ spec.homepage = "https://github.com/johnpwillman/eaesy"
15
+ spec.license = "MIT"
16
+
17
+ # # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
+ # # to allow pushing to a single host or delete this section to allow pushing to any host.
19
+ # if spec.respond_to?(:metadata)
20
+ # spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
21
+ # else
22
+ # raise "RubyGems 2.0 or newer is required to protect against " \
23
+ # "public gem pushes."
24
+ # end
25
+
26
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
27
+ f.match(%r{^(test|spec|features)/})
28
+ end
29
+ spec.bindir = "exe"
30
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
31
+ spec.require_paths = ["lib"]
32
+
33
+ spec.add_development_dependency "bundler", "~> 1.15"
34
+ spec.add_development_dependency "rake", "~> 10.0"
35
+ end
data/lib/eaesy.rb ADDED
@@ -0,0 +1,56 @@
1
+ require "eaesy/version"
2
+
3
+ require 'openssl'
4
+ require 'digest/sha2'
5
+ require 'base64'
6
+
7
+ module Eaesy
8
+ class Cipher
9
+ def initialize(key_plain)
10
+ @cipherAlg = "aes-256-cbc"
11
+ @key = sha256(key_plain)
12
+ end
13
+
14
+ def encrypt(secret, iv = nil)
15
+ cipher = OpenSSL::Cipher.new(@cipherAlg)
16
+ cipher.encrypt
17
+
18
+ # you will need to store this and key for later, in order to decrypt your data
19
+ iv = iv.unpack('m')[0] if iv
20
+ iv = cipher.random_iv unless iv
21
+
22
+ # load them into the cipher
23
+ cipher.key = @key
24
+ cipher.iv = iv
25
+
26
+ # encrypt the message
27
+ encrypted = cipher.update(secret)
28
+ encrypted << cipher.final
29
+
30
+ {
31
+ encrypted_secret: [encrypted].pack('m'),
32
+ iv: [iv].pack('m')
33
+ }
34
+ end
35
+
36
+ def decrypt(encrypted_secret, iv)
37
+ # now we create a cipher for decrypting
38
+ cipher = OpenSSL::Cipher::Cipher.new(@cipherAlg)
39
+ cipher.decrypt
40
+ cipher.key = @key
41
+ cipher.iv = iv.unpack('m')[0]
42
+
43
+ # and decrypt it
44
+ decrypted = cipher.update(encrypted_secret.unpack('m')[0])
45
+ decrypted << cipher.final
46
+
47
+ decrypted
48
+ end
49
+
50
+ private
51
+
52
+ def sha256(string_to_SHA)
53
+ sha256 = Digest::SHA256.new().digest(string_to_SHA)
54
+ end
55
+ end
56
+ end
@@ -0,0 +1,3 @@
1
+ module Eaesy
2
+ VERSION = "0.1.0"
3
+ end
metadata ADDED
@@ -0,0 +1,83 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: eaesy
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - johnatjawsdb
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2018-05-26 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.15'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.15'
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
+ description: Encrypts a string value using the AES 256 CBC algorithm and decrypts
42
+ it back again.
43
+ email:
44
+ - john@jawsdb.com
45
+ executables: []
46
+ extensions: []
47
+ extra_rdoc_files: []
48
+ files:
49
+ - ".gitignore"
50
+ - Gemfile
51
+ - LICENSE.txt
52
+ - README.md
53
+ - Rakefile
54
+ - bin/console
55
+ - bin/setup
56
+ - eaesy.gemspec
57
+ - lib/eaesy.rb
58
+ - lib/eaesy/version.rb
59
+ homepage: https://github.com/johnpwillman/eaesy
60
+ licenses:
61
+ - MIT
62
+ metadata: {}
63
+ post_install_message:
64
+ rdoc_options: []
65
+ require_paths:
66
+ - lib
67
+ required_ruby_version: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - ">="
70
+ - !ruby/object:Gem::Version
71
+ version: '0'
72
+ required_rubygems_version: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - ">="
75
+ - !ruby/object:Gem::Version
76
+ version: '0'
77
+ requirements: []
78
+ rubyforge_project:
79
+ rubygems_version: 2.4.8
80
+ signing_key:
81
+ specification_version: 4
82
+ summary: Simple string encryption/decryption using AES 256 CBC
83
+ test_files: []