13 lines
312 B
Plaintext
13 lines
312 B
Plaintext
[[[ Certificate Code Command & Control ]]]
|
|
|
|
|
|
# show the sections of the package file
|
|
$ openssl pkcs12 -in ~/cert.p12 -nodes -passin pass:"password"
|
|
|
|
# show all textual information
|
|
$ openssl pkcs12 -in ~/cert.p12 -nodes -passin pass:"password" | \
|
|
openssl x509 -noout -text
|
|
openssl x509 -noout -subject
|
|
|
|
|