Class: LetsCert::KeyFile

Inherits:
OpenSSLIOPlugin show all
Includes:
FileIOPluginMixin
Defined in:
lib/letscert/io_plugins/key_file.rb

Overview

Key file plugin

Author:

  • Sylvain Daubert

Constant Summary

Constants inherited from OpenSSLIOPlugin

OpenSSLIOPlugin::PEM_RE

Instance Attribute Summary

Attributes inherited from IOPlugin

#name

Instance Method Summary collapse

Methods included from FileIOPluginMixin

#load, #save_to_file

Methods inherited from OpenSSLIOPlugin

#dump_key, #initialize, #load_cert, #load_key

Methods inherited from IOPlugin

empty_data, #initialize, #load, register

Methods included from Loggable

included, #logger

Constructor Details

This class inherits a constructor from LetsCert::OpenSSLIOPlugin

Instance Method Details

#load_from_content(content) ⇒ Hash

Returns:

  • (Hash)


35
36
37
# File 'lib/letscert/io_plugins/key_file.rb', line 35

def load_from_content(content)
  { key: load_key(content) }
end

#persistedHash

Returns always get true for :key key.

Returns:

  • (Hash)

    always get true for :key key



30
31
32
# File 'lib/letscert/io_plugins/key_file.rb', line 30

def persisted
  @persisted ||= { key: true }
end

#save(data) ⇒ void

This method returns an undefined value.

Save private key.

Parameters:

  • data (Hash)


42
43
44
# File 'lib/letscert/io_plugins/key_file.rb', line 42

def save(data)
  save_to_file(dump_key(data[:key]))
end