- Add the same header stuff to aes_locl.h as is in des_locl.h to avoid

undefined functions (memset, etc).
- Put a .cvsignore in the aes directory too.
This commit is contained in:
Geoff Thorpe 2002-01-05 12:55:08 +00:00
parent bc37d996fc
commit e4dd79bbc8
2 changed files with 11 additions and 0 deletions

2
crypto/aes/.cvsignore Normal file
View File

@ -0,0 +1,2 @@
lib
Makefile.save

View File

@ -52,10 +52,19 @@
#ifndef HEADER_AES_LOCL_H
#define HEADER_AES_LOCL_H
#include <openssl/e_os2.h>
#ifdef OPENSSL_NO_AES
#error AES is disabled.
#endif
#include <stdio.h>
#include <stdlib.h>
#if defined(__STDC__) || defined(OPENSSL_SYS_VMS) || defined(M_XENIX) || defined(OPENSSL_SYS_MSDOS)
#include <string.h>
#endif
typedef unsigned long u32;
typedef unsigned short u16;
typedef unsigned char u8;