msl.network.cli_certdump module

Command line interface for the certdump command.

To see the help documentation, run the following command in a terminal:

msl-network certdump --help

Dumps the details of a PEM certificate.

The certdump command is similar to the openssl command to get the details of a certificate:

openssl x509 -in certificate.crt -text -noout

Examples:

# dump the details to the terminal
msl-network certdump /path/to/cert.pem

# dump the details to a file
msl-network certdump /path/to/cert.pem --out dump.txt

See Also:

msl-network certgen
msl.network.cli_certdump.add_parser_certdump(parser)[source]

Add the certdump command to the parser.

msl.network.cli_certdump.execute(args)[source]

Executes the certdump command.