gibberish 2.1.0 → 2.1.1
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 +5 -5
- data/.travis.yml +3 -2
- data/CHANGELOG.mdown +3 -0
- data/README.markdown +3 -1
- data/lib/gibberish/aes.rb +1 -1
- data/lib/gibberish/rsa.rb +1 -1
- data/lib/gibberish/version.rb +1 -1
- metadata +4 -17
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: d18eb9193277e296d4871d2189ab28493f1b302c3f5db5a9e3e768d44e88aca6
|
|
4
|
+
data.tar.gz: '09de455531220e82d598bc363267c8c7976c6cf86ce94af6925fa9d44e392e76'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 915242fb823425d44d1613e0366a39938d5f0c182044db37b0a19a5acb14ef594925448f0131800207a77cbb08536a34169469458f2ba8cfb09aeaa1dc5d88eb
|
|
7
|
+
data.tar.gz: 5009385c6aec8312686c8c45b81d150fa0503cd613a0ca9e6b3f39c193f991ecc330ae92ea0c5a29ac8c57c9eb4b963225b2da81f772d61a0c7407c1cf1e607a
|
data/.travis.yml
CHANGED
data/CHANGELOG.mdown
CHANGED
data/README.markdown
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Gibberish - A ruby encryption library
|
|
2
|
-
[](https://travis-ci.org/mdp/gibberish)
|
|
3
|
+
|
|
4
|
+
**Note: It's 2017 and if you're looking for a modern and actively maintained Ruby encryption library you should do yourself a favor and check out [RbNaCl](https://github.com/cryptosphere/rbnacl). Gibberish was started in 2011 when encryption on Ruby was not a trivial matter, however thanks to projects like [NaCl](https://nacl.cr.yp.to/) and [LibSodium](https://download.libsodium.org/doc/) that's no longer the case.**
|
|
3
5
|
|
|
4
6
|
*NOTICE: Breaking Changes in 2.0*
|
|
5
7
|
|
data/lib/gibberish/aes.rb
CHANGED
data/lib/gibberish/rsa.rb
CHANGED
data/lib/gibberish/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gibberish
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.
|
|
4
|
+
version: 2.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mark Percival
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-06-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Supports SJCL compatible AES encryption, HMAC, and Digests
|
|
14
14
|
email:
|
|
@@ -66,21 +66,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
66
66
|
version: '0'
|
|
67
67
|
requirements: []
|
|
68
68
|
rubyforge_project: gibberish
|
|
69
|
-
rubygems_version: 2.
|
|
69
|
+
rubygems_version: 2.7.6
|
|
70
70
|
signing_key:
|
|
71
71
|
specification_version: 4
|
|
72
72
|
summary: An opinionated ruby encryption library
|
|
73
|
-
test_files:
|
|
74
|
-
- spec/aes_benchmark.rb
|
|
75
|
-
- spec/aes_spec.rb
|
|
76
|
-
- spec/digest_spec.rb
|
|
77
|
-
- spec/fixtures/secret.txt
|
|
78
|
-
- spec/hmac_spec.rb
|
|
79
|
-
- spec/openssl/plaintext.aes
|
|
80
|
-
- spec/openssl/plaintext.crypted
|
|
81
|
-
- spec/openssl/plaintext.txt
|
|
82
|
-
- spec/openssl/private.pem
|
|
83
|
-
- spec/openssl/public.pem
|
|
84
|
-
- spec/rsa_spec.rb
|
|
85
|
-
- spec/spec_helper.rb
|
|
86
|
-
has_rdoc:
|
|
73
|
+
test_files: []
|