new upstream release (3.3.0); modify package compatibility for Stretch
[ossec-hids.git] / src / os_crypto / sha1 / sha.h
old mode 100755 (executable)
new mode 100644 (file)
index be021fa..87b5e5d
@@ -1,9 +1,3 @@
-/* @(#) $Id: ./src/os_crypto/sha1/sha.h, 2011/09/08 dcid Exp $
- */
-/* Included on ossec */
-
-
-/* crypto/sha/sha.h */
 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
 #define SHA_LONG unsigned int
 #endif
 
-#define SHA_LBLOCK     16
-#define SHA_CBLOCK     (SHA_LBLOCK*4)  /* SHA treats input data as a
-                                        * contiguous array of 32 bit
-                                        * wide big-endian values. */
+#define SHA_LBLOCK  16
+#define SHA_CBLOCK  (SHA_LBLOCK*4)  /* SHA treats input data as a
+             * contiguous array of 32 bit
+             * wide big-endian values. */
 #define SHA_LAST_BLOCK  (SHA_CBLOCK-8)
 #define SHA_DIGEST_LENGTH 20
 
-typedef struct SHAstate_st
-       {
-       SHA_LONG h0,h1,h2,h3,h4;
-       SHA_LONG Nl,Nh;
-       SHA_LONG data[SHA_LBLOCK];
-       unsigned int num;
-       } SHA_CTX;
+typedef struct SHAstate_st {
+    SHA_LONG h0, h1, h2, h3, h4;
+    SHA_LONG Nl, Nh;
+    SHA_LONG data[SHA_LBLOCK];
+    unsigned int num;
+} SHA_CTX;
 
 int SHA1_Init(SHA_CTX *c);
 int SHA1_Update(SHA_CTX *c, const void *data, size_t len);