WIP: uniproc
[hband-tools.git] / user-tools / pfx2pem
blob62156e802b1e22807f32c08b63b940ece0d92360
1 #!/bin/bash
3 true <<EOF
4 =pod
6 =head1 NAME
8 pfx2pem - Convert PFX (PKCS#12) certificate file to PEM format
10 =cut
12 EOF
15 usage="Usage: pfx2pem [<PFX file>] [<PEM file>]"
16 openssl pkcs12 -in "${1?$usage}" -out "${2?$usage}" -nodes