cosmopolitan/usr/share/ssl/root/show.sh
Justine Tunney 0d3c1c8b1a
Do work on curl/mbedtls/zstd
This change fixes stderr to be unbuffered. Added hardware AES on ARM64
to help safeguard against timing attacks. The curl.com command will be
somewhat more pleasant to use.
2023-07-07 10:13:35 -07:00

8 lines
169 B
Bash
Executable file

#!/bin/sh
for f in usr/share/ssl/root/*.pem; do
echo
echo File: $f
echo
openssl crl2pkcs7 -nocrl -certfile $f |
openssl pkcs7 -print_certs -text -noout
done