Description
Uses
-
step certificate unbundle leaf-chain.crt leaf.crt intermediate-chain.crt
- separates certificate chain into separate files. One with just the leaf certificate and the other with the intermediate chain. -
step certificate unbundle --leaf leaf-chain.crt
- Output the leaf certificate to stdout (or stderror, whatever the other commands do). Assume PEM format for output. -
step certificate unbundle --intermediate leaf-chain.crt
- Output the intermediate chain to stdout (or stderror, whatever the other commands do). Assume PEM format for output. -
step certificate unbundle --leaf --out leaf.crt leaf-chain.crt
- Write the leaf out to a file specified by the--out
flag. -
step certificate unbundle --intermediate --out intermediate.crt leaf-chain.crt
- Write the intermediate out to a file specified by the--out
flag.