Forrest logo
back to context overview

certutil

List of commands for certutil:

  • certutil:tldr:6e6f7 certutil: Add subject alternative names to a given certificate.
    $ certutil -S -f ${path-to-password_file-txt} -d . -t ",," -c "${server_certificate}" -n "${server_name}" -g ${2048} -s "CN=${common_name},O=${organization}"
    try on your machine
    explain this command
  • certutil:tldr:8662c certutil: List all certificates in a database.
    $ certutil -L -d .
    try on your machine
    explain this command
  • certutil:tldr:c4c2a certutil: Create a new certificate database.
    $ certutil -N -d .
    try on your machine
    explain this command
  • certutil:tldr:dfd35 certutil: Import the signed certificate into the requesters database.
    $ certutil -A -n "${server_certificate}" -t ",," -i ${filename-crt} -d .
    try on your machine
    explain this command
  • certutil:tldr:f6b72 certutil: List all private keys in a database.
    $ certutil -K -d . -f ${path-to-password_file-txt}
    try on your machine
    explain this command
back to context overview