chiark / gitweb /
tripe.h: Make job index be unsigned int, not unsigned short.
[tripe] / server / keyset.c
index bb2397fc72a79d701cb6664ceb6dba66266851f6..fe491280cbcfd4f3792ce0dd9450cfa392d9f3c5 100644 (file)
@@ -1,13 +1,11 @@
 /* -*-c-*-
- *
- * $Id$
  *
  * Handling of symmetric keysets
  *
  * (c) 2001 Straylight/Edgeware
  */
 
-/*----- Licensing notice --------------------------------------------------* 
+/*----- Licensing notice --------------------------------------------------*
  *
  * This file is part of Trivial IP Encryption (TrIPE).
  *
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation; either version 2 of the License, or
  * (at your option) any later version.
- * 
+ *
  * TrIPE 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 TrIPE; if not, write to the Free Software Foundation,
  * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
@@ -56,7 +54,7 @@
 /* --- Encrypted data format --- *
  *
  * Let %$p_i$% be the %$i$%-th plaintext message, with type %$t$%.  We first
- * compute 
+ * compute
  *
  *   %$c_i = \mathcal{E}\textrm{-CBC}_{K_{\text{E}}}(p_i)$%
  *
@@ -159,7 +157,7 @@ static int doencrypt(keyset *ks, unsigned ty, buf *b, buf *bb)
     rc = -1;
   }
   ks->sz_exp = nsz;
-  return (rc);  
+  return (rc);
 }
 
 /* --- @dodecrypt@ --- *
@@ -277,7 +275,7 @@ void ks_drop(keyset *ks)
  *
  * Arguments:  @const void *k@ = pointer to key material
  *             @size_t x, y, z@ = offsets into key material (see below)
- *             @peer *p@ = pointer to peer information 
+ *             @peer *p@ = pointer to peer information
  *
  * Returns:    A pointer to the new keyset.
  *