moved key.h to blenkey.h

This commit is contained in:
Kent Mein 2002-11-01 19:50:52 +00:00
parent 3dc53c7489
commit 485ae62d2c
5 changed files with 4 additions and 4 deletions

@ -71,7 +71,7 @@ install: all debug
@[ -d $(LCGDIR)/$(LIBNAME) ] || mkdir $(LCGDIR)/$(LIBNAME)
@[ -d $(LCGDIR)/$(LIBNAME)/include ] || mkdir $(LCGDIR)/$(LIBNAME)/include
@[ -d $(LCGDIR)/$(LIBNAME)/lib ] || mkdir $(LCGDIR)/$(LIBNAME)/lib
cp -f key.h $(LCGDIR)/$(LIBNAME)/include/blenkey.h
cp -f blenkey.h $(LCGDIR)/$(LIBNAME)/include/blenkey.h
cp -f $(LIB_a) $(LCGDIR)/$(LIBNAME)/lib/
$(DIR)/$(DEBUG_DIR)keyloader: $(LOADER_OBJS) $(LIB_a)

@ -41,7 +41,7 @@
#include <stdlib.h>
#include <string.h>
#include "key.h" /* external interface */
#include "blenkey.h" /* external interface */
#include "key_internal.h"
char *Hexify(byte *in, unsigned int length) {

@ -42,7 +42,7 @@
#include "openssl/ripemd.h"
#include "openssl/rc4.h"
#include "openssl/err.h"
#include "key.h"
#include "blenkey.h"
#include "mt19937int.h" /* Mersenne Twister (under artistic license) */

@ -42,7 +42,7 @@
#include <string.h>
#include "key_pyc.h" /* the Python byte code */
#include "key.h" /* the external interface */
#include "blenkey.h" /* the external interface */
#include "key_internal.h"
#define TESTReadKeyFile 1