rsa-g 1.0.0 → 1.0.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/VERSION +1 -1
- data/lib/rsa/key_pair.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 9c3900b8d34e46b86f2df9c28ba88b481b30288107cdc71b87cd010c89133cce
|
4
|
+
data.tar.gz: a50b02d9f533b6ca838189d128b4f8e8d52828235e7e81fac7e746b1f74966f8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3906be4a68c2e0dd3c65cb485f819bc3be4fa31ee6849fdf62feee54f709a1fcf49361008398717c5085b499a96004c632157b7cd7759cb72aaf6153e4189e80
|
7
|
+
data.tar.gz: 6798a7f8db001eae4e9e1c2d4b76859e1d297bc391aa8afc1958b99b3188412c242dd44d7112b5f679751391277204e5198cbc143d2f736ca71cf8570088200f
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.1
|
data/lib/rsa/key_pair.rb
CHANGED
@@ -11,14 +11,14 @@ module RSA
|
|
11
11
|
# The RSA private key.
|
12
12
|
#
|
13
13
|
# @return [Key]
|
14
|
-
|
14
|
+
attr_accessor :private_key
|
15
15
|
alias_method :private, :private_key
|
16
16
|
|
17
17
|
##
|
18
18
|
# The RSA public key.
|
19
19
|
#
|
20
20
|
# @return [Key]
|
21
|
-
|
21
|
+
attr_accessor :public_key
|
22
22
|
alias_method :public, :public_key
|
23
23
|
|
24
24
|
##
|
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.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gabriel Vian
|
@@ -77,7 +77,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
77
77
|
version: '0'
|
78
78
|
requirements: []
|
79
79
|
rubyforge_project: rsa
|
80
|
-
rubygems_version: 2.6
|
80
|
+
rubygems_version: 2.7.6
|
81
81
|
signing_key:
|
82
82
|
specification_version: 4
|
83
83
|
summary: RSA encryption for Ruby.
|