class Localhost::Authority

def self.fetch(*arguments, **options)

See {#initialize} for the format of the arguments.
Fetch (load or create) a certificate with the given hostname.
def self.fetch(*arguments, **options)
	authority = self.new(*arguments, **options)
	
	unless authority.load
		authority.save
	end
	
	return authority
end