class Localhost::Authority

def to_h

@returns A hash representation of the authority's certificate details.
def to_h
	{
		hostname: @hostname,
		certificate_path: certificate_path,
		key_path: key_path,
		expires_at: certificate.not_after,
	}
end