minienigma 0.0.4 → 0.0.5
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 +4 -4
- metadata +2 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eb5af0fa82f43b5c5f3425f264112bec23fa664b
|
|
4
|
+
data.tar.gz: 16f56b60080a445918a8b69d45b85f3738bc82af
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c64f962c2e118746804a5b4fb6671854220fcde28700111b1568543c1b5844096eb2a800467540d4b6dafe976bd4ee34a3048f2fc76a0e73b05080af752ed789
|
|
7
|
+
data.tar.gz: 1e3da10962b77250186e8754a869c8b1769d2dc3af24e0fc8a248d8458f32e122321e1c1087e377662c5a08900b633fc0c0a08e1ea6c436b2d9c79e0db466b38
|
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.
|
|
4
|
+
version: 0.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Esteban Ochoa
|
|
@@ -11,12 +11,10 @@ cert_chain: []
|
|
|
11
11
|
date: 2014-02-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: |-
|
|
14
|
-
Minienigma it's a simple to use string encrypting/decrypting machine out of the box
|
|
15
|
-
|
|
14
|
+
Minienigma it's a simple to use string encrypting/decrypting machine out of the box.<br>
|
|
16
15
|
It uses a AES 256 CBC algorithm which makes your data pretty secure this days.
|
|
17
16
|
In order to use it, make sure to configure it using MiniEnigma.configure(key, iv)
|
|
18
17
|
where key and iv needs to be a combination of characters.
|
|
19
|
-
|
|
20
18
|
-key must be 32 characters long.
|
|
21
19
|
-iv must be 16 characters long.
|
|
22
20
|
Then to encrypt just call MiniEnigma.encrypt('your insecure data here').
|