Class: RSA::OPEN::Private
- Inherits:
-
Object
- Object
- RSA::OPEN::Private
- Defined in:
- lib/rsa.rb
Instance Attribute Summary collapse
-
#d ⇒ Object
Returns the value of attribute d.
-
#n ⇒ Object
Returns the value of attribute n.
Class Method Summary collapse
Instance Attribute Details
#d ⇒ Object
Returns the value of attribute d.
15 16 17 |
# File 'lib/rsa.rb', line 15 def d @d end |
#n ⇒ Object
Returns the value of attribute n.
15 16 17 |
# File 'lib/rsa.rb', line 15 def n @n end |
Class Method Details
.d ⇒ Object
29 30 31 |
# File 'lib/rsa.rb', line 29 def self.d @d end |
.d=(d) ⇒ Object
21 22 23 |
# File 'lib/rsa.rb', line 21 def self.d=(d) @d=d end |
.n ⇒ Object
25 26 27 |
# File 'lib/rsa.rb', line 25 def self.n @n end |
.n=(n) ⇒ Object
17 18 19 |
# File 'lib/rsa.rb', line 17 def self.n=(n) @n=n end |