- Removed extraneous "polarssl/" in front on include directives in header files

This commit is contained in:
Paul Bakker 2011-08-15 09:07:52 +00:00
parent 33aac37d53
commit 314052fbfc
12 changed files with 27 additions and 27 deletions

View file

@ -41,7 +41,7 @@
#ifndef POLARSSL_BN_MUL_H #ifndef POLARSSL_BN_MUL_H
#define POLARSSL_BN_MUL_H #define POLARSSL_BN_MUL_H
#include "polarssl/config.h" #include "config.h"
#if defined(POLARSSL_HAVE_ASM) #if defined(POLARSSL_HAVE_ASM)

View file

@ -27,8 +27,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/ */
#include "polarssl/config.h" #include "config.h"
#include "polarssl/cipher.h" #include "cipher.h"
#ifndef POLARSSL_CIPHER_WRAP_H #ifndef POLARSSL_CIPHER_WRAP_H
#define POLARSSL_CIPHER_WRAP_H #define POLARSSL_CIPHER_WRAP_H

View file

@ -27,8 +27,8 @@
#ifndef SSL_DEBUG_H #ifndef SSL_DEBUG_H
#define SSL_DEBUG_H #define SSL_DEBUG_H
#include "polarssl/config.h" #include "config.h"
#include "polarssl/ssl.h" #include "ssl.h"
#if defined(POLARSSL_DEBUG_MSG) && defined(POLARSSL_DEBUG_C) #if defined(POLARSSL_DEBUG_MSG) && defined(POLARSSL_DEBUG_C)

View file

@ -27,7 +27,7 @@
#ifndef POLARSSL_DHM_H #ifndef POLARSSL_DHM_H
#define POLARSSL_DHM_H #define POLARSSL_DHM_H
#include "polarssl/bignum.h" #include "bignum.h"
/* /*
* DHM Error codes * DHM Error codes

View file

@ -27,8 +27,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/ */
#include "polarssl/config.h" #include "config.h"
#include "polarssl/md.h" #include "md.h"
#ifndef POLARSSL_MD_WRAP_H #ifndef POLARSSL_MD_WRAP_H
#define POLARSSL_MD_WRAP_H #define POLARSSL_MD_WRAP_H

View file

@ -30,10 +30,10 @@
#ifndef POLARSSL_OPENSSL_H #ifndef POLARSSL_OPENSSL_H
#define POLARSSL_OPENSSL_H #define POLARSSL_OPENSSL_H
#include "polarssl/aes.h" #include "aes.h"
#include "polarssl/md5.h" #include "md5.h"
#include "polarssl/rsa.h" #include "rsa.h"
#include "polarssl/sha1.h" #include "sha1.h"
#define AES_SIZE 16 #define AES_SIZE 16
#define AES_BLOCK_SIZE 16 #define AES_BLOCK_SIZE 16

View file

@ -27,7 +27,7 @@
#ifndef POLARSSL_PADLOCK_H #ifndef POLARSSL_PADLOCK_H
#define POLARSSL_PADLOCK_H #define POLARSSL_PADLOCK_H
#include "polarssl/aes.h" #include "aes.h"
#define POLARSSL_ERR_PADLOCK_DATA_MISALIGNED -0x0030 /**< Input data should be aligned. */ #define POLARSSL_ERR_PADLOCK_DATA_MISALIGNED -0x0030 /**< Input data should be aligned. */

View file

@ -30,11 +30,11 @@
#ifndef PKCS11_H_ #ifndef PKCS11_H_
#define PKCS11_H_ #define PKCS11_H_
#include "polarssl/config.h" #include "config.h"
#if defined(POLARSSL_PKCS11_C) #if defined(POLARSSL_PKCS11_C)
#include "polarssl/x509.h" #include "x509.h"
#include <pkcs11-helper-1.0/pkcs11h-certificate.h> #include <pkcs11-helper-1.0/pkcs11h-certificate.h>

View file

@ -27,7 +27,7 @@
#ifndef POLARSSL_RSA_H #ifndef POLARSSL_RSA_H
#define POLARSSL_RSA_H #define POLARSSL_RSA_H
#include "polarssl/bignum.h" #include "bignum.h"
/* /*
* RSA Error codes * RSA Error codes

View file

@ -29,16 +29,16 @@
#include <time.h> #include <time.h>
#include "polarssl/net.h" #include "net.h"
#include "polarssl/dhm.h" #include "dhm.h"
#include "polarssl/rsa.h" #include "rsa.h"
#include "polarssl/md5.h" #include "md5.h"
#include "polarssl/sha1.h" #include "sha1.h"
#include "polarssl/x509.h" #include "x509.h"
#include "polarssl/config.h" #include "config.h"
#if defined(POLARSSL_PKCS11_C) #if defined(POLARSSL_PKCS11_C)
#include "polarssl/pkcs11.h" #include "pkcs11.h"
#endif #endif
#if defined(_MSC_VER) && !defined(inline) #if defined(_MSC_VER) && !defined(inline)

View file

@ -31,7 +31,7 @@
#ifndef POLARSSL_VERSION_H #ifndef POLARSSL_VERSION_H
#define POLARSSL_VERSION_H #define POLARSSL_VERSION_H
#include "polarssl/config.h" #include "config.h"
/** /**
* The version number x.y.z is split into three parts. * The version number x.y.z is split into three parts.

View file

@ -27,8 +27,8 @@
#ifndef POLARSSL_X509_H #ifndef POLARSSL_X509_H
#define POLARSSL_X509_H #define POLARSSL_X509_H
#include "polarssl/rsa.h" #include "rsa.h"
#include "polarssl/dhm.h" #include "dhm.h"
/** /**
* \addtogroup x509_module * \addtogroup x509_module