chiark / gitweb /
The Great Upheaval -- step 1.
authorMark Wooding <mdw@distorted.org.uk>
Sat, 4 Sep 2004 07:50:08 +0000 (07:50 +0000)
committerMark Wooding <mdw@distorted.org.uk>
Sat, 4 Sep 2004 07:50:08 +0000 (07:50 +0000)
24 files changed:
Makefile.am
arith24.c
arith24.h
bits.h
configure.in
diffan.c
dsarand.c
dsarand.h
fibrand.c
fibrand.h
lcrand.c
lcrand.h
matrix.c
matrix.h
sac.c
sha.c
sha.h
storin-mktab.c
storin-tests.c
storin.c
storin.h
storin.tex
sym.c
sym.h

index d2a5c9611481e7b66b9f421481a22c66ce3008cc..8697e1f8da6aa82d18f34692bd269dcb4fa19cfe 100644 (file)
@@ -1,6 +1,6 @@
 ## -*-makefile-*-
 ##
-## $Id: Makefile.am,v 1.4 2001/03/11 23:46:56 mdw Exp $
+## $Id$
 ##
 ## Makefile for Storin distribution
 ##
index 19e3d3f9eeb2137ac261ed26586fef9e63d570ce..42f2651cdd4bd3fc93b0e59cbab0ba1313e6c1c9 100644 (file)
--- a/arith24.c
+++ b/arith24.c
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: arith24.c,v 1.2 2000/07/02 15:21:20 mdw Exp $
+ * $Id$
  *
  * Arithmetic mod %$2^{24}$%
  *
index de324846bebd702a797c7e691b9eb6474778fdf8..a3343b77512070a6220383f2ac3d9ccf435957c0 100644 (file)
--- a/arith24.h
+++ b/arith24.h
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: arith24.h,v 1.2 2000/07/02 15:21:20 mdw Exp $
+ * $Id$
  *
  * Arithmetic mod %$2^{24}$%
  *
diff --git a/bits.h b/bits.h
index 0ef7403407a1148275277aeabbd317f8a0cbe003..a1bb166d8588ee6b01d496579af4db5ac0da30c3 100644 (file)
--- a/bits.h
+++ b/bits.h
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: bits.h,v 1.2 2000/07/02 15:21:20 mdw Exp $
+ * $Id$
  *
  * Portable bit-level manipulation macros
  *
index 46a2dfd292e2e857b16a515d523e7febab061807..70fb90301d73ec39b7727223ce77047af7b62919 100644 (file)
@@ -1,6 +1,6 @@
 dnl -*-fundamental-*-
 dnl
-dnl $Id: configure.in,v 1.4 2000/07/02 15:49:44 mdw Exp $
+dnl $Id$
 dnl
 dnl Configuration script for cipher
 dnl
index 42b5c63b1ee0d797829254bf1ee07edf8a4b449f..dab2e0968df682a9a6d9424fcc71c97dfcbd7f5c 100644 (file)
--- a/diffan.c
+++ b/diffan.c
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: diffan.c,v 1.3 2000/07/02 15:21:20 mdw Exp $
+ * $Id$
  *
  * Differential analysis of matrix multiplication
  *
index fc8bae83ed17a86149312a231482cfb76ec0fa90..f43e01119bee78dd496da8bc00037702bbd8ea36 100644 (file)
--- a/dsarand.c
+++ b/dsarand.c
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: dsarand.c,v 1.2 2000/07/02 15:21:20 mdw Exp $
+ * $Id$
  *
  * Random number generator for DSA
  *
index caf75ab359519221d390dab2ab1c613e9a3b053c..75fc278e091213d5a862b7d4adfe54884a460f7a 100644 (file)
--- a/dsarand.h
+++ b/dsarand.h
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: dsarand.h,v 1.2 2000/07/02 15:21:20 mdw Exp $
+ * $Id$
  *
  * Random number generator for DSA
  *
index 46ec0fc91539998ac188a803d6c60ce3e009a2e2..f47b865802654b954b9e8fcab6d456e185c6343e 100644 (file)
--- a/fibrand.c
+++ b/fibrand.c
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: fibrand.c,v 1.2 2000/07/02 15:21:20 mdw Exp $
+ * $Id$
  *
  * Fibonacci generator
  *
index 3b58a642f2a5c86b2321b95a62271a51743bfc6b..6f07671065b35b356db852294b7ed253e7fae5c4 100644 (file)
--- a/fibrand.h
+++ b/fibrand.h
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: fibrand.h,v 1.2 2000/07/02 15:21:20 mdw Exp $
+ * $Id$
  *
  * Fibonacci generator
  *
index 682921cc6c079c38e2cb8a16ca7d050ef934d358..74df2679bc5ad32e3a032de2f32c58a2b0b53e11 100644 (file)
--- a/lcrand.c
+++ b/lcrand.c
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: lcrand.c,v 1.2 2000/07/02 15:21:20 mdw Exp $
+ * $Id$
  *
  * Simple linear congruential generator
  *
index b364c3793e1b97f281b98929ad94080365bf9dfe..4211475c2ebbb84e193d44acdbc03ce8807fad5a 100644 (file)
--- a/lcrand.h
+++ b/lcrand.h
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: lcrand.h,v 1.2 2000/07/02 15:21:20 mdw Exp $
+ * $Id$
  *
  * Simple linear congruential generator
  *
index 321d9b843a75429af1f849ca6640f25909502326..f064adac1df87b4676ab52af1c8ef7b7507ce713 100644 (file)
--- a/matrix.c
+++ b/matrix.c
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: matrix.c,v 1.3 2000/08/05 11:27:56 mdw Exp $
+ * $Id$
  *
  * Matrix arithmetic mod %$2^{24}$%
  *
index a5ff8d670fb04de1a55d7ffe9fd5df7f95623191..70ab910c4652ce9e749b528d45d0ec070db39427 100644 (file)
--- a/matrix.h
+++ b/matrix.h
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: matrix.h,v 1.2 2000/07/02 15:22:07 mdw Exp $
+ * $Id$
  *
  * Matrix arithmetic mod %$2^{24}$%
  *
diff --git a/sac.c b/sac.c
index 2aa73a095685e1cadfb66be68e82f53221e70b77..204dc29b556c74678e35993092ff3c6e8e17d3a6 100644 (file)
--- a/sac.c
+++ b/sac.c
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: sac.c,v 1.2 2000/07/02 15:21:20 mdw Exp $
+ * $Id$
  *
  * Testing for strict avalanche
  *
diff --git a/sha.c b/sha.c
index 1dd0058b419d2654d35b6d9639439b566ce644d1..1bd82dfe4817dfb02ea69dde88eb1166a682a981 100644 (file)
--- a/sha.c
+++ b/sha.c
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: sha.c,v 1.2 2000/07/02 15:21:20 mdw Exp $
+ * $Id$
  *
  * Implementation of the SHA-1 hash function
  *
diff --git a/sha.h b/sha.h
index cc8551f0015fe863ca746ccca93c4f5211a1b821..f2e84addfc08f2075b00fb29b85f378c9a8feb57 100644 (file)
--- a/sha.h
+++ b/sha.h
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: sha.h,v 1.2 2000/07/02 15:21:20 mdw Exp $
+ * $Id$
  *
  * Implementation of the SHA-1 hash function
  *
index 4c9295e159e42c7d6572183d32bf2dc00210a9d2..abdf72181b6fc1fb0e3a1e50aa68a92ea9eff959 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: storin-mktab.c,v 1.2 2000/07/02 15:21:20 mdw Exp $
+ * $Id$
  *
  * Search for invertible matrices
  *
index 610fcfa3ba7827f7763b2fee2f6ed29be2a77c8a..bc2dbf74c9c7b6cb159c0e5e1c0b66917f093d8f 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: storin-tests.c,v 1.2 2000/07/02 15:21:20 mdw Exp $
+ * $Id$
  *
  * Generate test vectors for Storin
  *
index 94d88ee88992021f62b50a33a0be79ffc8726b09..385a1b96bc57dbecdcafd8c2751fe5517356d52c 100644 (file)
--- a/storin.c
+++ b/storin.c
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: storin.c,v 1.2 2000/07/02 15:21:20 mdw Exp $
+ * $Id$
  *
  * Block cipher optimized for DSPs
  *
index 88ae80380ba8954bdb1f0e623210cbe2a48d54d2..1a6692a18414400f98f571f2767ead1bf44556f4 100644 (file)
--- a/storin.h
+++ b/storin.h
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: storin.h,v 1.2 2000/07/02 15:21:20 mdw Exp $
+ * $Id$
  *
  * Block cipher optimized for DSPs
  *
index 6a958f27892b386b9e4affae073e36ce47ee9062..fdb1704387aa598a9ca22a29cea4be448a87adf7 100644 (file)
@@ -1,6 +1,6 @@
 %%% -*-latex-*-
 %%%
-%%% $Id: storin.tex,v 1.7 2001/03/11 23:46:56 mdw Exp $
+%%% $Id$
 %%%
 %%% Definition of the cipher
 %%%
diff --git a/sym.c b/sym.c
index a16c6bbfa6535912f9c6f5efcf7770cb5cc97e48..293e1316ab6084a330cf459d708137bda780429a 100644 (file)
--- a/sym.c
+++ b/sym.c
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: sym.c,v 1.2 2000/07/02 15:21:20 mdw Exp $
+ * $Id$
  *
  * Symbol table management
  *
diff --git a/sym.h b/sym.h
index 09c83ad429dbc14f3915a23ba6fa62f1a39f3fee..4bfd42dae7f2be7dab6435e9eaabdc5201df91e3 100644 (file)
--- a/sym.h
+++ b/sym.h
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: sym.h,v 1.2 2000/07/02 15:21:20 mdw Exp $
+ * $Id$
  *
  * Symbol table management
  *