mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
5f84c80fc5
locate in sample/{module_name}/*. * ext/openssl/sample/*: removed. move to sample/openssl/*. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4492 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
23 lines
376 B
Ruby
23 lines
376 B
Ruby
#!/usr/bin/env ruby
|
|
|
|
require 'openssl'
|
|
include OpenSSL::X509
|
|
|
|
def cert2text(cert_str)
|
|
[Certificate, CRL, 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
|