DEBSOURCES
Skip Quicknav
sources / edk2 / 0~20161202.7bbe0b3e-1%2Bdeb9u1 / CryptoPkg / Library / OpensslLib / openssl-1.0.2j / tools / c_hash
123456789
#!/bin/sh # print out the hash values # for i in $* do h=`openssl x509 -hash -noout -in $i` echo "$h.0 => $i" done