encryption 1.1.6 → 1.1.7
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 +6 -14
- data/.rspec +0 -0
- data/.travis.yml +0 -0
- data/Gemfile +0 -0
- data/Gemfile.lock +0 -0
- data/MIT-LICENSE +0 -0
- data/README.md +5 -1
- data/Rakefile +0 -0
- data/encryption.gemspec +3 -3
- data/lib/configuration.rb +0 -0
- data/lib/configuration/base.rb +0 -0
- data/lib/configuration/symmetric.rb +0 -0
- data/lib/encryption.rb +0 -0
- data/lib/helpers.rb +0 -0
- data/lib/helpers/string.rb +0 -0
- data/lib/modules.rb +0 -0
- data/lib/modules/asymmetric.rb +0 -0
- data/lib/modules/asymmetric/keypair.rb +0 -0
- data/lib/modules/asymmetric/pkey.rb +0 -0
- data/lib/modules/asymmetric/private_key.rb +0 -0
- data/lib/modules/asymmetric/public_key.rb +0 -0
- data/lib/modules/encryptor.rb +0 -0
- data/lib/modules/symmetric.rb +0 -0
- data/spec/configuration/base_spec.rb +0 -0
- data/spec/configuration/symmetric_spec.rb +0 -0
- data/spec/encryption/asymmetric/integration_spec.rb +0 -0
- data/spec/encryption/asymmetric/keypair_spec.rb +0 -0
- data/spec/encryption/asymmetric/private_key_spec.rb +0 -0
- data/spec/encryption/asymmetric/public_key_spec.rb +0 -0
- data/spec/encryption/symmetric_global_spec.rb +0 -0
- data/spec/encryption/symmetric_instance_spec.rb +0 -0
- data/spec/helpers/string_spec.rb +0 -0
- data/spec/spec_helper.rb +0 -0
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,15 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
metadata.gz: !binary |-
|
|
9
|
-
NjhhNjFhZTZmMjYwYTA4OTY0OWMxYjQxNzk2ZGY2NjdmZTI5MzdjNmRhNTYx
|
|
10
|
-
ODU4MGVhMjFjZDViMGRhNmI1YmViYWU2MDIzMjYxNDQ4YWM1MDFiZmRhNWM5
|
|
11
|
-
YzVkNzBkM2UxOWEzMWRlNWI3YmIyOGUwNzBmMTg4Y2U1YTIyNWU=
|
|
12
|
-
data.tar.gz: !binary |-
|
|
13
|
-
MzZmOGRiZWI2MmJlMDllZWQyZGM1MDcwNzhmN2E4ZjYzMTE5MzU1NGUxOGFj
|
|
14
|
-
ZDI1YzhmNTkyY2IzZmNjMmQwNjdjZGJjNGJhOGFmMTFlZDcyYmNiYjI4ZTVj
|
|
15
|
-
MDUwMTk1OGU4ODAxZGM0NzRkZTg4NzcyZWQ1MjIyMmVkYzFlODA=
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: ec7f6d82b38dea97e1c781d22e3eb17d8bcc499e
|
|
4
|
+
data.tar.gz: 07a59b8bde4e6fb4faa9901a5ac8841586d6bd03
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: ebe6a67a272d5ec0e006ed3f98e0bdf34bd9efa1ac16fe9d40c96803b2b3422dd83d5b8c6263ac503dbacc1068b3fe193f42b250c27fb6e36f37cf89a2d3d71c
|
|
7
|
+
data.tar.gz: d3f6d06281fa944e27f31f679986dc2cf4dd1ae3a89c6db23461751d8f255123441a9129416f0531d0612738f8407901e011b7b1b90bae52872087937a034585
|
data/.rspec
CHANGED
|
File without changes
|
data/.travis.yml
CHANGED
|
File without changes
|
data/Gemfile
CHANGED
|
File without changes
|
data/Gemfile.lock
CHANGED
|
File without changes
|
data/MIT-LICENSE
CHANGED
|
File without changes
|
data/README.md
CHANGED
|
@@ -2,11 +2,15 @@ Encryption
|
|
|
2
2
|
==========
|
|
3
3
|
[](http://badge.fury.io/rb/encryption)
|
|
4
4
|
[](https://codeclimate.com/github/Itehnological/encryption)
|
|
5
|
-
[](https://travis-ci.org/itay-grudev/encryption)
|
|
6
6
|
|
|
7
7
|
A simple wrapper for the OpenSSL Cipher library for Ruby and Rails applications.
|
|
8
8
|
This gem provides you with an easy way to encrypt and decrypt any data using both symmetrical and asymmetrical algorithms.
|
|
9
9
|
|
|
10
|
+
Documentation
|
|
11
|
+
-------------
|
|
12
|
+
Full documentation can be found in the [Wiki section](https://github.com/itay-grudev/encryption/wiki) of the repo.
|
|
13
|
+
|
|
10
14
|
Installation
|
|
11
15
|
------------
|
|
12
16
|
Run this command
|
data/Rakefile
CHANGED
|
File without changes
|
data/encryption.gemspec
CHANGED
|
@@ -2,14 +2,14 @@ require 'date'
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = 'encryption'
|
|
5
|
-
s.version = '1.1.
|
|
5
|
+
s.version = '1.1.7'
|
|
6
6
|
s.date = Date.today.to_s
|
|
7
7
|
s.summary = 'A simple wrapper for the OpenSSL Cipher library'
|
|
8
8
|
s.description = 'Encryption provides a simple interface for symmetric / asymmetric encryption with the OpenSSL Cipher library'
|
|
9
9
|
s.authors = ['Itay Grudev']
|
|
10
10
|
s.email = ['itay.grudev@gmail.com']
|
|
11
|
-
s.homepage = 'http://
|
|
11
|
+
s.homepage = 'http://itay-grudev.github.io/encryption/'
|
|
12
12
|
s.files = `git ls-files`.split("\n")
|
|
13
13
|
s.require_paths = ['lib']
|
|
14
14
|
s.license = "MIT"
|
|
15
|
-
end
|
|
15
|
+
end
|
data/lib/configuration.rb
CHANGED
|
File without changes
|
data/lib/configuration/base.rb
CHANGED
|
File without changes
|
|
File without changes
|
data/lib/encryption.rb
CHANGED
|
File without changes
|
data/lib/helpers.rb
CHANGED
|
File without changes
|
data/lib/helpers/string.rb
CHANGED
|
File without changes
|
data/lib/modules.rb
CHANGED
|
File without changes
|
data/lib/modules/asymmetric.rb
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/lib/modules/encryptor.rb
CHANGED
|
File without changes
|
data/lib/modules/symmetric.rb
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/spec/helpers/string_spec.rb
CHANGED
|
File without changes
|
data/spec/spec_helper.rb
CHANGED
|
File without changes
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: encryption
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Itay Grudev
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2014-03-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Encryption provides a simple interface for symmetric / asymmetric encryption
|
|
14
14
|
with the OpenSSL Cipher library
|
|
@@ -50,7 +50,7 @@ files:
|
|
|
50
50
|
- spec/encryption/symmetric_instance_spec.rb
|
|
51
51
|
- spec/helpers/string_spec.rb
|
|
52
52
|
- spec/spec_helper.rb
|
|
53
|
-
homepage: http://
|
|
53
|
+
homepage: http://itay-grudev.github.io/encryption/
|
|
54
54
|
licenses:
|
|
55
55
|
- MIT
|
|
56
56
|
metadata: {}
|
|
@@ -60,17 +60,17 @@ require_paths:
|
|
|
60
60
|
- lib
|
|
61
61
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
62
62
|
requirements:
|
|
63
|
-
- -
|
|
63
|
+
- - '>='
|
|
64
64
|
- !ruby/object:Gem::Version
|
|
65
65
|
version: '0'
|
|
66
66
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
67
67
|
requirements:
|
|
68
|
-
- -
|
|
68
|
+
- - '>='
|
|
69
69
|
- !ruby/object:Gem::Version
|
|
70
70
|
version: '0'
|
|
71
71
|
requirements: []
|
|
72
72
|
rubyforge_project:
|
|
73
|
-
rubygems_version: 2.
|
|
73
|
+
rubygems_version: 2.2.1
|
|
74
74
|
signing_key:
|
|
75
75
|
specification_version: 4
|
|
76
76
|
summary: A simple wrapper for the OpenSSL Cipher library
|