Class: LetsCert::KeyFile
- Inherits:
-
OpenSSLIOPlugin
- Object
- IOPlugin
- OpenSSLIOPlugin
- LetsCert::KeyFile
- Includes:
- FileIOPluginMixin
- Defined in:
- lib/letscert/io_plugin.rb
Overview
Key file plugin
Constant Summary
Constants inherited from OpenSSLIOPlugin
Constants inherited from IOPlugin
Instance Attribute Summary
Attributes inherited from IOPlugin
Instance Method Summary collapse
- #load_from_content(content) ⇒ Hash
-
#persisted ⇒ Hash
Always get
truefor:keykey. -
#save(data) ⇒ void
Save private key.
Methods included from FileIOPluginMixin
Methods inherited from OpenSSLIOPlugin
#dump_key, #initialize, #load_cert, #load_key
Methods inherited from IOPlugin
empty_data, #initialize, #load, register, registered
Methods included from Loggable
Constructor Details
This class inherits a constructor from LetsCert::OpenSSLIOPlugin
Instance Method Details
#load_from_content(content) ⇒ Hash
266 267 268 |
# File 'lib/letscert/io_plugin.rb', line 266 def load_from_content(content) { key: load_key(content) } end |
#persisted ⇒ Hash
Returns always get true for :key key.
261 262 263 |
# File 'lib/letscert/io_plugin.rb', line 261 def persisted @persisted ||= { key: true } end |
#save(data) ⇒ void
This method returns an undefined value.
Save private key.
273 274 275 |
# File 'lib/letscert/io_plugin.rb', line 273 def save(data) save_to_file(dump_key(data[:key])) end |