whitespace cleanups
[util-vserver.git] / src / testsuite / hashcalc-plain.c
index b8dc8c6..a444f3d 100644 (file)
@@ -1,16 +1,16 @@
 // $Id$    --*- c -*--
 
 // Copyright (C) 2006 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
-//  
+//
 // This program is free software; you can redistribute it and/or modify
 // it under the terms of the GNU General Public License as published by
 // the Free Software Foundation; version 2 of the License.
-//  
+//
 // This program is distributed in the hope that it will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 // GNU General Public License for more details.
-//  
+//
 // You should have received a copy of the GNU General Public License
 // along with this program; if not, write to the Free Software
 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
@@ -36,19 +36,19 @@ convertDigest(char res[], ensc_hash_context * h_ctx)
 {
   static char const            HEX_DIGIT[] = "0123456789abcdef";
   size_t                       d_size   = ensc_crypto_hashctx_get_digestsize(h_ctx);
-    
+
   unsigned char                        digest[d_size];
   size_t                       out = 0;
 
   if (ensc_crypto_hashctx_get_digest(h_ctx, digest, NULL, d_size)==-1)
     return false;
-  
+
   for (size_t in=0; in<d_size; ++in) {
     res[out++]  = HEX_DIGIT[digest[in] >>    4];
     res[out++]  = HEX_DIGIT[digest[in] &  0x0f];
   }
   res[out++] = '\0';
-  
+
   return true;
 }
 
@@ -81,13 +81,13 @@ int main(int UNUSED argc, char *argv[])
     assert(ensc_crypto_hashctx_update(&hash_context, buf, buf_size)!=-1);
     munmap((void *)(buf), buf_size);
   }
-    
+
   assert(convertDigest(digest, &hash_context));
-  
+
   Vwrite(1, digest, strlen(digest));
   Vwrite(1, "\n", 1);
-  
+
   ensc_crypto_hashctx_free(&hash_context);
-  
+
   return 0;
 }