File: c_hash

package info (click to toggle)
openssl 0.9.8c-4etch3%2Bm68k1
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 19,320 kB
  • ctags: 26,390
  • sloc: ansic: 203,562; perl: 18,445; makefile: 10,732; asm: 10,675; cpp: 4,379; sh: 2,925; lisp: 23
file content (9 lines) | stat: -rw-r--r-- 119 bytes parent folder | download | duplicates (17)
1
2
3
4
5
6
7
8
9
#!/bin/sh
# print out the hash values 
#

for i in $*
do
	h=`openssl x509 -hash -noout -in $i`
	echo "$h.0 => $i"
done