carrierwave_encrypter_decrypter 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
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NmExMDc1NjA4NGMyMDQzZWZmN2FjZDY1NWJlODI1Y2U1OTcyYzM4MQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
OTg0ZTAyNjE3NzBlOWIxODNmZjU0NmQzNGRjOGFmYjM3YjczYzE5ZA==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZjdmNWMzZWZhYzkzOWY0NTAzZjM2NzNlOTdiZjU4NWJhODVlODhjNGEzYjU4
|
10
|
+
OWE1Nzg2Y2U2YjU2OWVmZDI2NmEzNWY3YTk4MTgyMWJkOTc2NDY0YzEyYzZh
|
11
|
+
MWE0ZGZlOTM0YzVlMWQwNzA1Y2VhZGQwOTA4N2JjMGQ0YTkyMmM=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NGMxNTEwNWRkOTYyMDYwMmM2NDg5ZTlkZDQ2NWQ1MmJmYTMwMGJmMWY1ZTg2
|
14
|
+
NmQ1NTUxNDU5NDE3M2NjZWJlZDk2ODgxMjgyM2YyMGYyMzc0OGJlM2NmODkx
|
15
|
+
MWZjYTczNmM3ODhkNDc4ZjRiZjczMmRlMWE0Y2Q5MGYyYmYzNDE=
|
data/Readme.md
CHANGED
@@ -3,11 +3,11 @@
|
|
3
3
|
A Rubygem to secure the file uploaded by encrypting the file later on decrypting when needed. Completely secure and depends on Ruby 2.0.0 OpenSSL::Cipher and OpenSSL::PKCS5
|
4
4
|
|
5
5
|
|
6
|
-
OpenSSL::Cipher
|
6
|
+
**OpenSSL::Cipher**
|
7
7
|
|
8
8
|
Provides symmetric algorithms for encryption and decryption.
|
9
9
|
|
10
|
-
OpenSSL::PKCS5
|
10
|
+
**OpenSSL::PKCS5**
|
11
11
|
|
12
12
|
Provides password-based encryption functionality based on PKCS#5.
|
13
13
|
|
@@ -13,8 +13,8 @@ module Ced
|
|
13
13
|
config.key_size = 256
|
14
14
|
|
15
15
|
#This strategy is applicable when you want to have the pkcs5 (Password based encryption)
|
16
|
-
config.encryption_type = :pkcs5
|
17
|
-
config.key_size = 256
|
16
|
+
#config.encryption_type = :pkcs5
|
17
|
+
#config.key_size = 256
|
18
18
|
end
|
19
19
|
"
|
20
20
|
end
|