minienigma 0.0.5 → 0.0.6
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 +8 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7b5bb02efc882a71007c2b6ad106db63cbf48ebe
|
|
4
|
+
data.tar.gz: 43607e7fca01c851cfcc0636addd4fb246433184
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 96e671b9b6844c2a1ad03fcfe6d3f7e3d598b9b52e8527ed72cd715acff9a98313a9d384260980df3af883f9460bad13fa6ecf78862fb4c8a5d013aec257051a
|
|
7
|
+
data.tar.gz: f4a9f1d00e901a7c45b4d7d12ab1d058a19a19ada7c3b66f1cf73b7be8d423c8960b63647e1be29cd04a6dd7c18e21d0410c5b110f733de1505d00204311ea67
|
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.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Esteban Ochoa
|
|
@@ -10,16 +10,13 @@ bindir: bin
|
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2014-02-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
|
-
description:
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
Then to encrypt just call MiniEnigma.encrypt('your insecure data here').
|
|
21
|
-
To decrypt MiniEnigma.decrypt('your secure data here').
|
|
22
|
-
PD: A nice place to get secure key and iv: http://randomkeygen.com
|
|
13
|
+
description: "Minienigma it's a simple to use string encrypting/decrypting machine
|
|
14
|
+
out of the box.\nIt uses a AES 256 CBC algorithm which makes your data pretty secure
|
|
15
|
+
this days.\nIn order to use it, make sure to configure it using MiniEnigma.configure(key,
|
|
16
|
+
iv)\nwhere key and iv needs to be a combination of characters. Key must be 32 characters
|
|
17
|
+
long. \nIv must be 16 characters long.\nThen to encrypt just call MiniEnigma.encrypt('your
|
|
18
|
+
insecure data here').\nTo decrypt MiniEnigma.decrypt('your secure data here').\nPD:
|
|
19
|
+
A nice place to get secure key and iv: http://randomkeygen.com"
|
|
23
20
|
email: esteban8a@innventto.com
|
|
24
21
|
executables: []
|
|
25
22
|
extensions: []
|