Add --days and --end-date command line options

This commit is contained in:
Jérémy Lecour 2020-05-05 00:22:35 +02:00 committed by Jérémy Lecour
parent a30be3872f
commit 7506003f53
2 changed files with 58 additions and 2 deletions

View file

@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Create a changelog
* Add a version number and `version` command
* Accept a `password-file` command line option to read password from a file
* Accept `--days` and `--end-date` command line options
* CA key length is configurable (minimum 4096)
### Changed

View file

@ -276,6 +276,44 @@ create() {
printf 'ERROR: "--password-file" requires a non-empty option argument.\n' >&2
exit 1
;;
--days)
# days option, with value separated by space
if [ -n "$2" ]; then
days=${2}
shift
else
printf 'ERROR: "--days" requires a non-empty option argument.\n' >&2
exit 1
fi
;;
--days=?*)
# days option, with value separated by =
days=${1#*=}
;;
--days=)
# days options, without value
printf 'ERROR: "--days" requires a non-empty option argument.\n' >&2
exit 1
;;
--end-date)
# end-date option, with value separated by space
if [ -n "$2" ]; then
end_date=${2}
shift
else
printf 'ERROR: "--end-date" requires a non-empty option argument.\n' >&2
exit 1
fi
;;
--end-date=?*)
# end-date option, with value separated by =
end_date=${1#*=}
;;
--end-date=)
# end-date options, without value
printf 'ERROR: "--end-date" requires a non-empty option argument.\n' >&2
exit 1
;;
--)
# End of all options.
shift
@ -294,8 +332,23 @@ create() {
shift
done
# The name of the certificate
cn="${1:-}"
# Set expiration argument
crt_expiration_arg=""
if [ -n "${days}" ] && [ "${days}" -gt 0 ]; then
crt_expiration_arg="-days ${days}"
fi
if [ -n "${end_date}" ]; then
cert_end_date=$(TZ=:Zulu date --date "${end_date}" +"%Y%m%d%H%M%SZ" 2> /dev/null)
if [ "$?" -ne 0 ]; then
error "Invalid end date format : \`${end_date}' can't be parsed by date(1)"
else
crt_expiration_arg="-enddate ${cert_end_date}"
fi
fi
if [ "${from_csr}" -eq 1 ]; then
if [ "${ask_pass}" -eq 1 ]; then
warning "Warning: -p|--password is ignored with -f|--file|--crt-file"
@ -348,7 +401,8 @@ create() {
-config "${CONF_FILE}" \
-in "${csr_file}" \
-passin env:CA_PASSWORD \
-out "${CRT_DIR}/${cn}.crt"
-out "${CRT_DIR}/${cn}.crt" \
${crt_expiration_arg}
echo "The CRT file is available in ${CRT_DIR}/${cn}.crt"
else
@ -435,7 +489,8 @@ EOF
-config "${CONF_FILE}" \
-passin env:CA_PASSWORD \
-in "${CSR_DIR}/${cn}-${SUFFIX}.csr" \
-out "${CRT_DIR}/${cn}.crt"
-out "${CRT_DIR}/${cn}.crt" \
${crt_expiration_arg}
# check if CRT is a valid
"${OPENSSL_BIN}" x509 \