From 0345245e860375a32c9a437c4a9d9cae807134e9 Mon Sep 17 00:00:00 2001 From: Shashank Date: Mon, 29 May 2017 12:40:26 +0530 Subject: CMSCOPE changed --- usr/misc/c_hash | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 usr/misc/c_hash (limited to 'usr/misc/c_hash') diff --git a/usr/misc/c_hash b/usr/misc/c_hash new file mode 100755 index 000000000..5e0a90817 --- /dev/null +++ b/usr/misc/c_hash @@ -0,0 +1,9 @@ +#!/bin/sh +# print out the hash values +# + +for i in $* +do + h=`openssl x509 -hash -noout -in $i` + echo "$h.0 => $i" +done -- cgit