minienigma 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. checksums.yaml +4 -4
  2. metadata +13 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 855e5299edce5419bec871a83d89cc709f980681
4
- data.tar.gz: 39710d746f40f61b437476f1ef9a8749e8fb0a62
3
+ metadata.gz: 3539d25d1fc0466e5a8e4b690d7b996b971dc5a8
4
+ data.tar.gz: cf9682fed9f113cc9907330f91a652da86b796dd
5
5
  SHA512:
6
- metadata.gz: 1f0557216ebcf06733568a71ed2692f6eae02e8da0d528fdb0c64d3dc3961cd9a3375ca98ed051804275721de6a3c4101070daf6d8aa081aa86c8b377de85166
7
- data.tar.gz: 0c0e8c797b12ce6d2cd20a95dce47ff0b7e8c299b5c3139c44242ad956c11e8f8bd1d12289ee2745281801854fdfd1eb2cf4b3ec7787b55b960c960d41f0904d
6
+ metadata.gz: 5b11b85597a7e476ed3db27caf6dbc8e1f916647b8ddf7130cba50e44353e66e4206c3ad36739cb875004fcfbba32f010199aeeecf0ebae192741402fc492375
7
+ data.tar.gz: daac7323ae0397f3de188e853ed5196c16d548e577e13f3ef888dee03b07b7688284b61db25d52f1403548e885dc25c34231c8a3ef51de513815a512175f4c9e
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minienigma
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Esteban Ochoa
@@ -10,8 +10,17 @@ bindir: bin
10
10
  cert_chain: []
11
11
  date: 2014-02-12 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: Miniemigma uses an AES 256 bit CBC algorithm for encrypting and decrypting
14
- strings. Encrypted strings are returned using a Base64 encoding. http://randomkeygen.com
13
+ description: |-
14
+ Minienigma it's a simple to use string encrypting/decrypting machine out of the box.
15
+ It uses a AES 256 CBC algorithm which makes your data pretty secure this days.
16
+ In order to use it, make sure to configure it using MiniEnigma.configure(key, iv)
17
+ where key and iv needs to be a combination of characters.
18
+
19
+ -key must be 32 characters long.
20
+ -iv must be 16 characters long.
21
+ Then to encrypt just call MiniEnigma.encrypt('your insecure data here').
22
+ To decrypt MiniEnigma.decrypt('your secure data here').
23
+ PD: A nice place to get secure key and iv: http://randomkeygen.com
15
24
  email: esteban8a@innventto.com
16
25
  executables: []
17
26
  extensions: []
@@ -41,6 +50,5 @@ rubyforge_project:
41
50
  rubygems_version: 2.1.10
42
51
  signing_key:
43
52
  specification_version: 4
44
- summary: Minienigma provides a very simple and easy to use mechanism to encrypt and
45
- decrypt messages.
53
+ summary: Simple encrypting/decrypting machine using AES 256.
46
54
  test_files: []