DEBSOURCES
Skip Quicknav
sources / edk2 / 0~20131112.2590861a-3 / CryptoPkg / Library / OpensslLib / openssl-0.9.8w / 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