# File lib/puppet/sslcertificates/ca.rb, line 137
137:     def list
138:         return Dir.entries(Puppet[:csrdir]).find_all { |file|
139:             file =~ /\.pem$/
140:         }.collect { |file|
141:             file.sub(/\.pem$/, '')
142:         }
143:     end