symmetric-encryption 0.2.0 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +201 -54
- data/examples/symmetric-encryption.yml +64 -19
- data/lib/symmetric/cipher.rb +184 -0
- data/lib/symmetric/encryption.rb +197 -182
- data/lib/symmetric/version.rb +1 -1
- data/lib/symmetric-encryption.rb +1 -0
- data/test/attr_encrypted_test.rb +6 -18
- data/test/cipher_test.rb +71 -0
- data/test/config/symmetric-encryption.yml +13 -9
- data/test/config/{test.iv → test_new.iv} +0 -0
- data/test/config/{test.key → test_new.key} +0 -0
- data/test/config/test_secondary_1.iv +1 -0
- data/test/config/test_secondary_1.key +2 -0
- data/test/encryption_test.rb +16 -6
- metadata +9 -6
- data/symmetric-encryption-0.1.2.gem +0 -0
metadata
CHANGED
@@ -4,9 +4,9 @@ version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease: false
|
5
5
|
segments:
|
6
6
|
- 0
|
7
|
-
-
|
7
|
+
- 3
|
8
8
|
- 0
|
9
|
-
version: 0.
|
9
|
+
version: 0.3.0
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Reid Morrison
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2012-03-
|
17
|
+
date: 2012-03-19 00:00:00 -04:00
|
18
18
|
default_executable:
|
19
19
|
dependencies: []
|
20
20
|
|
@@ -29,6 +29,7 @@ extra_rdoc_files: []
|
|
29
29
|
|
30
30
|
files:
|
31
31
|
- examples/symmetric-encryption.yml
|
32
|
+
- lib/symmetric/cipher.rb
|
32
33
|
- lib/symmetric/encryption.rb
|
33
34
|
- lib/symmetric/extensions/active_record/base.rb
|
34
35
|
- lib/symmetric/railtie.rb
|
@@ -45,12 +46,14 @@ files:
|
|
45
46
|
- nbproject/project.xml
|
46
47
|
- Rakefile
|
47
48
|
- README.md
|
48
|
-
- symmetric-encryption-0.1.2.gem
|
49
49
|
- test/attr_encrypted_test.rb
|
50
|
+
- test/cipher_test.rb
|
50
51
|
- test/config/database.yml
|
51
52
|
- test/config/symmetric-encryption.yml
|
52
|
-
- test/config/
|
53
|
-
- test/config/
|
53
|
+
- test/config/test_new.iv
|
54
|
+
- test/config/test_new.key
|
55
|
+
- test/config/test_secondary_1.iv
|
56
|
+
- test/config/test_secondary_1.key
|
54
57
|
- test/encryption_test.rb
|
55
58
|
has_rdoc: true
|
56
59
|
homepage: https://github.com/ClarityServices/symmetric-encryption
|
Binary file
|