Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
more informative error messages on errors within mmalloc
[simgrid.git] / src / xbt / xbt_sha.c
index 0530fee..f74500a 100644 (file)
@@ -1,4 +1,3 @@
-/* $Id$ */
 /* xbt_sha.c - SHA1 hash function */
 
 /* Initial version part of iksemel (XML parser for Jabber)
@@ -6,10 +5,9 @@
  *   Distributed under LGPL v2.1, February 1999.
  */
 
-/* Adapted to fit into SimGrid by Martin Quinson.
- *   Copyright (c) 2008 Martin Quinson. All rights reserved.
- *   Distributed under LGPL v2.1, February 1999.
- */
+/* Later adapted to fit into SimGrid. Distributed under LGPL v2.1, Feb 1999.*/
+/* Copyright (c) 2008, 2009, 2010. The SimGrid Team.
+ * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
@@ -152,8 +150,8 @@ static void sha_calculate(xbt_sha_t sha)
 
   for (i = 16; i < 80; i++)
     sha->buf[i] =
-      SRL(sha->buf[i - 3] ^ sha->buf[i - 8] ^ sha->
-          buf[i - 14] ^ sha->buf[i - 16], 1);
+        SRL(sha->buf[i - 3] ^ sha->buf[i - 8] ^ sha->
+            buf[i - 14] ^ sha->buf[i - 16], 1);
 
   A = sha->hash[0];
   B = sha->hash[1];
@@ -197,8 +195,8 @@ static void test_sha(const char *clear, const char *hashed)
   char hash[41];
   xbt_sha(clear, hash);
 
-  xbt_test_add1("==== Test with '%s'", clear);
-  xbt_test_assert3(!memcmp(hash, hashed, 40), "Wrong sha: %40s!=%40s (%s)",
+  xbt_test_add("==== Test with '%s'", clear);
+  xbt_test_assert(!memcmp(hash, hashed, 40), "Wrong sha: %40s!=%40s (%s)",
                    hash, hashed, mycmp(hash, hashed, 40));
 }
 
@@ -221,4 +219,4 @@ XBT_TEST_UNIT("sha", test_crypto_sha, "Test of the sha algorithm")
            "373ba8be29d4d95708bf7cd43038f4e409dcb439");
 
 }
-#endif /* SIMGRID_TEST */
+#endif                          /* SIMGRID_TEST */