mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
0d3c1c8b1a
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.
8 lines
169 B
Bash
Executable file
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
|