From 74924209e1bc0fe5aa6de16d5f5566b53b310c60 Mon Sep 17 00:00:00 2001 From: Todd A Ouska Date: Thu, 2 Jun 2011 11:26:21 -0700 Subject: [PATCH] rename integer.h ctc_integer.h --- ctaocrypt/include/ctc_dh.h | 2 +- ctaocrypt/include/ctc_dsa.h | 2 +- ctaocrypt/include/ctc_ecc.h | 2 +- ctaocrypt/include/{integer.h => ctc_integer.h} | 2 +- ctaocrypt/include/ctc_rsa.h | 2 +- ctaocrypt/src/integer.c | 2 +- ctaocrypt/src/pwdbased.c | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) rename ctaocrypt/include/{integer.h => ctc_integer.h} (99%) diff --git a/ctaocrypt/include/ctc_dh.h b/ctaocrypt/include/ctc_dh.h index 99ca5bcb0..a05ca95e5 100644 --- a/ctaocrypt/include/ctc_dh.h +++ b/ctaocrypt/include/ctc_dh.h @@ -25,7 +25,7 @@ #define CTAO_CRYPT_DH_H #include "ctc_types.h" -#include "integer.h" +#include "ctc_integer.h" #include "ctc_random.h" #ifdef __cplusplus diff --git a/ctaocrypt/include/ctc_dsa.h b/ctaocrypt/include/ctc_dsa.h index 3c4703b81..dff28b665 100644 --- a/ctaocrypt/include/ctc_dsa.h +++ b/ctaocrypt/include/ctc_dsa.h @@ -25,7 +25,7 @@ #define CTAO_CRYPT_DSA_H #include "ctc_types.h" -#include "integer.h" +#include "ctc_integer.h" #include "ctc_random.h" #ifdef __cplusplus diff --git a/ctaocrypt/include/ctc_ecc.h b/ctaocrypt/include/ctc_ecc.h index def2e96cc..2069dc900 100644 --- a/ctaocrypt/include/ctc_ecc.h +++ b/ctaocrypt/include/ctc_ecc.h @@ -25,7 +25,7 @@ #define CTAO_CRYPT_ECC_H #include "ctc_types.h" -#include "integer.h" +#include "ctc_integer.h" #include "ctc_random.h" #ifdef __cplusplus diff --git a/ctaocrypt/include/integer.h b/ctaocrypt/include/ctc_integer.h similarity index 99% rename from ctaocrypt/include/integer.h rename to ctaocrypt/include/ctc_integer.h index aa0594cfc..941d48245 100644 --- a/ctaocrypt/include/integer.h +++ b/ctaocrypt/include/ctc_integer.h @@ -1,4 +1,4 @@ -/* integer.h +/* ctc_integer.h * * Copyright (C) 2006-2011 Sawtooth Consulting Ltd. * diff --git a/ctaocrypt/include/ctc_rsa.h b/ctaocrypt/include/ctc_rsa.h index 8164b893e..032408474 100644 --- a/ctaocrypt/include/ctc_rsa.h +++ b/ctaocrypt/include/ctc_rsa.h @@ -24,7 +24,7 @@ #define CTAO_CRYPT_RSA_H #include "ctc_types.h" -#include "integer.h" +#include "ctc_integer.h" #include "ctc_random.h" #ifdef __cplusplus diff --git a/ctaocrypt/src/integer.c b/ctaocrypt/src/integer.c index 35ab188a3..9fd15d8b7 100644 --- a/ctaocrypt/src/integer.c +++ b/ctaocrypt/src/integer.c @@ -29,7 +29,7 @@ #ifndef USE_FAST_MATH -#include "integer.h" +#include "ctc_integer.h" /* handle up to 6 inits */ diff --git a/ctaocrypt/src/pwdbased.c b/ctaocrypt/src/pwdbased.c index 579c5a4a2..5250dee4e 100644 --- a/ctaocrypt/src/pwdbased.c +++ b/ctaocrypt/src/pwdbased.c @@ -24,7 +24,7 @@ #include "pwdbased.h" #include "ctc_hmac.h" -#include "integer.h" +#include "ctc_integer.h" #include "ctc_error.h" #ifdef CYASSL_SHA512 #include "sha512.h"