repo.or.cz
/
hband-tools.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
new tool: args2env
[hband-tools.git]
/
user-tools
/
pfx2pem
blob
62156e802b1e22807f32c08b63b940ece0d92360
1
#!/bin/bash
2
3
true
<<EOF
4
=pod
5
6
=head1 NAME
7
8
pfx2pem - Convert PFX (PKCS#12) certificate file to PEM format
9
10
=cut
11
12
EOF
13
14
15
usage
=
"Usage: pfx2pem [<PFX file>] [<PEM file>]"
16
openssl pkcs12
-in
"
${1?$usage}
"
-out
"
${2?$usage}
"
-nodes