cosmopolitan/usr/share/ssl/root/show.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
169 B
Bash
Raw Normal View History

#!/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