www.pudn.com > serpent.rar > serpent-aux.h


/* 
  $Id: serpent-aux.h,v 1.3 1998/06/07 08:08:05 fms Exp $ 
 
  # This file is part of the C reference implementation of Serpent. 
  # 
  # Written by Frank Stajano, 
  # Olivetti Oracle Research Laboratory  and 
  # Cambridge University Computer Laboratory . 
  #  
  # (c) 1998 Olivetti Oracle Research Laboratory (ORL) 
  # 
  # Original (Python) Serpent reference development started on 1998 02 12. 
  # C implementation development started on 1998 03 04. 
  # 
  # Serpent cipher invented by Ross Anderson, Eli Biham, Lars Knudsen. 
  # Serpent is a candidate for the Advanced Encryption Standard. 
   
  */ 
 
 
#ifndef _SERPENT_AUX_ 
#define _SERPENT_AUX_ 
 
#include "serpent-api.h" 
 
EMBED_RCS(serpent_aux_h, 
          "$Id: serpent-aux.h,v 1.3 1998/06/07 08:08:05 fms Exp $") 
 
 
 
int checkHexNumber(char* s); 
char hex(int n); 
int stringToWords(char* s, WORD w[], int words); 
char* wordsToString(WORD x[], int size, char* buffer); 
void printHeader(char* filename, char* mode, char* test); 
void render(char* label, WORD x[], int size); 
 
#endif