DEBSOURCES
Skip Quicknav
sources / edk2 / 0~20161202.7bbe0b3e-1%2Bdeb9u1 / CryptoPkg / Library / OpensslLib / openssl-1.0.2j / tools / c_issuer
12345678910
#!/bin/sh # # print out the issuer # for i in $* do n=`openssl x509 -issuer -noout -in $i` echo "$i $n" done