home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / lib / ssl / misc / c_hash next >
Encoding:
Text File  |  2006-07-31  |  119 b   |  10 lines

  1. #!/bin/sh
  2. # print out the hash values 
  3. #
  4.  
  5. for i in $*
  6. do
  7.     h=`openssl x509 -hash -noout -in $i`
  8.     echo "$h.0 => $i"
  9. done
  10.