• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/arm-brcm-linux-uclibcgnueabi/sysroot/etc/ssl/misc/
1#!/bin/sh
2# print out the hash values 
3#
4
5for i in $*
6do
7	h=`openssl x509 -hash -noout -in $i`
8	echo "$h.0 => $i"
9done
10