Class: RSA::OPEN::Public
- Inherits:
-
Object
- Object
- RSA::OPEN::Public
- Defined in:
- lib/rsa.rb
Instance Attribute Summary collapse
-
#e ⇒ Object
Returns the value of attribute e.
-
#n ⇒ Object
Returns the value of attribute n.
Class Method Summary collapse
Instance Attribute Details
#e ⇒ Object
Returns the value of attribute e.
35 36 37 |
# File 'lib/rsa.rb', line 35 def e @e end |
#n ⇒ Object
Returns the value of attribute n.
35 36 37 |
# File 'lib/rsa.rb', line 35 def n @n end |
Class Method Details
.e ⇒ Object
49 50 51 |
# File 'lib/rsa.rb', line 49 def self.e @e end |
.e=(e) ⇒ Object
41 42 43 |
# File 'lib/rsa.rb', line 41 def self.e=(e) @e=e end |
.n ⇒ Object
45 46 47 |
# File 'lib/rsa.rb', line 45 def self.n @n end |
.n=(n) ⇒ Object
37 38 39 |
# File 'lib/rsa.rb', line 37 def self.n=(n) @n=n end |