rsa-g 1.0.3 → 1.0.4

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -1
  3. data/lib/rsa-g.rb +7 -7
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 44288c5afaa144c4ee019bfd4247c55b4c04311f9d41c701ad820b52103d3767
4
- data.tar.gz: 836f6d46223fcb783b64a765a781c7406ec1f858af4ff98277bfcebf8a02fd2b
3
+ metadata.gz: 2acd3c978c4e7ab5986f652113cd8cf973a2444b741fc38450abd440de353b9e
4
+ data.tar.gz: e67d17cf5231804b40b99549257165b8c6468b9715174ef6aaba7971000ad2c6
5
5
  SHA512:
6
- metadata.gz: cef0c128bd45452c04126550ea3c7befa07c8721232891a0b8438242e9f8871853f4d2c31432484e9befb1757fa6ba5d15277ee6b2e42e5aae859d20e7e7b0be
7
- data.tar.gz: eafed609efce9c75b1e442e2acd2a3d80fd5c376d7a10f9d1d9c659ed12f464a4f085df0208fe2d72f07890498e4dd6713c1b534b51580b2428d54eb26d3e5fc
6
+ metadata.gz: 0f34b064eb04865dbcc241492d15b160845c27627aec00f6cd8b87257139280ccbf2e56a83159e5e44c1aaccbe0d2091062dbffd0d83c1c851e3de725af7095d
7
+ data.tar.gz: e63711a31248eb3b20212e14fc953d87eaa81d3f87c684554a90607da89600e4c32c4046299b2777ac44602f474cc9f6068ea5dc46fb693ab85d2817fd296a79
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.3
1
+ 1.0.4
data/lib/rsa-g.rb CHANGED
@@ -11,17 +11,17 @@ if RUBY_VERSION < '1.9.1'
11
11
  end
12
12
 
13
13
  module RSA
14
- autoload :Math, 'rsa/math'
15
- autoload :PKCS1, 'rsa/pkcs1'
16
- autoload :Key, 'rsa/key'
17
- autoload :KeyPair, 'rsa/key_pair'
18
- autoload :OpenSSL, 'rsa/openssl'
19
- autoload :VERSION, 'rsa/version'
14
+ autoload :Math, 'rsa-g/math'
15
+ autoload :PKCS1, 'rsa-g/pkcs1'
16
+ autoload :Key, 'rsa-g/key'
17
+ autoload :KeyPair, 'rsa-g/key_pair'
18
+ autoload :OpenSSL, 'rsa-g/openssl'
19
+ autoload :VERSION, 'rsa-g/version'
20
20
  end
21
21
 
22
22
  begin
23
23
  require 'openssl'
24
- require 'rsa/openssl'
24
+ require 'rsa-g/openssl'
25
25
  rescue LoadError
26
26
  # OpenSSL acceleration disabled.
27
27
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rsa-g
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gabriel Vian