home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 December (Special) / PCWorld_2005-12_Special_cd.bin / Bezpecnost / lsti / lsti.exe / framework-2.5.exe / c_issuer < prev    next >
Text File  |  2005-04-11  |  112b  |  11 lines

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