зеркало из https://github.com/github/ruby.git
27 строки
416 B
Ruby
27 строки
416 B
Ruby
#!/usr/bin/env ruby
|
|
|
|
require 'openssl'
|
|
|
|
def cert2text(cert_str)
|
|
[
|
|
OpenSSL::X509::Certificate,
|
|
OpenSSL::X509::CRL,
|
|
OpenSSL::X509::Request,
|
|
].each do |klass|
|
|
begin
|
|
puts klass.new(cert_str).to_text
|
|
return
|
|
rescue
|
|
end
|
|
end
|
|
raise ArgumentError.new('Unknown format.')
|
|
end
|
|
|
|
if ARGV.empty?
|
|
cert2text(STDIN.read)
|
|
else
|
|
ARGV.each do |file|
|
|
cert2text(File.read(file))
|
|
end
|
|
end
|