class Localhost::Issuer

def initialize(name = "development", path: State.path)

@parameter path [String] The path path for loading and saving the certificate.
@parameter name [String] The common name to use for the certificate.

Initialize the issuer with the given name.
def initialize(name = "development", path: State.path)
	@name = name
	@path = path
	
	@subject = nil
	@key = nil
	@certificate = nil
end