X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?p=ossec-hids.git;a=blobdiff_plain;f=src%2Fos_crypto%2Fsha1%2Fsha1_op.c;h=99d74ec7c4e345efb5b00ef6d9eaa102fbfb85c4;hp=159c3cf5f9ebfc4febf7df8c078c36d541a019af;hb=6ef2f786c6c8ead94841b5f93baf9f43421f08c8;hpb=301048b51990573e58a30dc4a5bb4ec285cad554 diff --git a/src/os_crypto/sha1/sha1_op.c b/src/os_crypto/sha1/sha1_op.c index 159c3cf..99d74ec 100755 --- a/src/os_crypto/sha1/sha1_op.c +++ b/src/os_crypto/sha1/sha1_op.c @@ -1,4 +1,5 @@ -/* @(#) $Id$ */ +/* @(#) $Id: ./src/os_crypto/sha1/sha1_op.c, 2011/09/08 dcid Exp $ + */ /* Copyright (C) 2009 Trend Micro Inc. * All right reserved. @@ -14,20 +15,20 @@ #include #include "sha1_op.h" -/* Openssl sha1 +/* Openssl sha1 * Only use if open ssl is not available. #ifndef USE_OPENSSL #include "sha.h" #include "sha_locl.h" #else -#include +#include #endif */ #include "sha_locl.h" - + int OS_SHA1_File(char * fname, char * output) { SHA_CTX c; @@ -35,32 +36,32 @@ int OS_SHA1_File(char * fname, char * output) unsigned char buf[2048 +2]; unsigned char md[SHA_DIGEST_LENGTH]; int n; - + memset(output,0, 65); buf[2049] = '\0'; - + fp = fopen(fname,"r"); if(!fp) return(-1); - + SHA1_Init(&c); while((n = fread(buf, 1, 2048, fp)) > 0) { buf[n] = '\0'; SHA1_Update(&c,buf,(unsigned long)n); } - + SHA1_Final(&(md[0]),&c); - + for (n=0; n