rsa-g 1.0.3 → 1.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/lib/rsa-g.rb +7 -7
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2acd3c978c4e7ab5986f652113cd8cf973a2444b741fc38450abd440de353b9e
|
4
|
+
data.tar.gz: e67d17cf5231804b40b99549257165b8c6468b9715174ef6aaba7971000ad2c6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0f34b064eb04865dbcc241492d15b160845c27627aec00f6cd8b87257139280ccbf2e56a83159e5e44c1aaccbe0d2091062dbffd0d83c1c851e3de725af7095d
|
7
|
+
data.tar.gz: e63711a31248eb3b20212e14fc953d87eaa81d3f87c684554a90607da89600e4c32c4046299b2777ac44602f474cc9f6068ea5dc46fb693ab85d2817fd296a79
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
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
|