Проверить цепочку сертификатов openssl
Показать полную цепочку: leaf → intermediate → root
openssl s_client -connect example.com:443 -showcerts 2>/dev/null | openssl crl2pkcs7 -nocrl | openssl pkcs7 -print_certs -noout -text | grep -E 'Subject:|Issuer:'
more openssl
all 27 commands →
Зашифровать файл AES-256
openssl enc -aes-256-cbc -pbkdf2 -in secret.txt -out secret.enc
Расшифровать AES-256 файл
openssl enc -d -aes-256-cbc -pbkdf2 -in secret.enc -out secret.txt
Случайный hex-токен
openssl rand -hex 32
Полный разбор сертификата
openssl x509 -in cert.pem -noout -text
Проверка истечения (для CI)
openssl x509 -in cert.pem -noout -checkend 86400 && echo OK || echo EXPIRING