# File lib/puppet/sslcertificates/ca.rb, line 93
93:   def getpass
94:     if @config[:capass] and File.readable?(@config[:capass])
95:       return File.read(@config[:capass])
96:     else
97:       raise Puppet::Error, "Could not decrypt CA key with password: #{detail}"
98:     end
99:   end