]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/lib/sha1.h
o fix : restore a crypted stream on a fd witch doen't define keys cause
[bacula/bacula] / bacula / src / lib / sha1.h
index 4bcf470d286c8d40afd8b6c1a48e693da92ba2e2..437fe19c1bc3d8b175e02d2e8645f2dcbcaa8b13 100644 (file)
@@ -85,7 +85,7 @@ typedef struct SHA1Context
     uint32_t Length_Low;            /* Message length in bits      */
     uint32_t Length_High;           /* Message length in bits      */
 
-                               /* Index into message block array   */
+                              /* Index into message block array   */
     int32_t Message_Block_Index;
     uint8_t Message_Block[64];      /* 512-bit message blocks      */
 
@@ -99,9 +99,9 @@ typedef struct SHA1Context
 
 int SHA1Init(SHA1Context *);
 int SHA1Update(SHA1Context *,
-               const uint8_t *,
-               unsigned int);
+              const uint8_t *,
+              unsigned int);
 int SHA1Final(SHA1Context *,
-               uint8_t Message_Digest[SHA1HashSize]);
+              uint8_t Message_Digest[SHA1HashSize]);
 
 #endif