
ssl
List of commands for ssl:
-
ssl:certificate:self-signed:create Generate a self-signed SSL certificate$ openssl req -x509 -newkey rsa:4096 -keyout ${key_file} -out ${cert_file} -sha256 -days ${expiration_days}try on your machineexplain this command
-
ssl:key-command:change Change an SSH key comment$ ssh-keygen -c -C "${new_comment}" -f ${ssh_key_path}try on your machineexplain this command