Created
January 15, 2015 19:55
-
-
Save nicinabox/616fa0d3c4a64e526e8f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
class MakePEM | |
def initialize(argv) | |
@file = argv[0] | |
abort help unless valid_args | |
parts = @file.split('.') | |
@name = parts.first | |
create_pem | |
end | |
def valid_args | |
@file and @file.match(/p12$/) | |
end | |
def help | |
<<-doc | |
Usage: | |
makepem file.p12 | |
doc | |
end | |
def create_pem | |
`openssl pkcs12 -in #{@file} -out #{@name}.pem -nodes -clcerts` | |
if $? == 0 | |
`rm #{@file}` | |
puts 'Done' | |
end | |
end | |
end | |
MakePEM.new(ARGV) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment