summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2002-05-08 10:34:36 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2002-05-08 10:34:36 +0000
commit5e11102cd3535c69a4f07e059f939687ea3eecd5 (patch)
tree2f52015d697bfe56d1caf89156903462a0a18ade
parent8669c9d61a73802fb14d44f9bb8f951b893de171 (diff)
downloadgnutls-5e11102cd3535c69a4f07e059f939687ea3eecd5.tar.gz
renamed gnutls_gcry* to gnutls_mpi*
-rw-r--r--lib/Makefile.am4
-rw-r--r--lib/gnutls_int.h4
-rw-r--r--lib/gnutls_mpi.c (renamed from lib/gnutls_gcry.c)0
-rw-r--r--lib/gnutls_mpi.h (renamed from lib/gnutls_gcry.h)4
4 files changed, 5 insertions, 7 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am
index fcb62b6c51..7129d11bae 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -13,7 +13,7 @@ EXTRA_DIST = debug.h gnutls_compress.h defines.h gnutls.asn pkix.asn \
gnutls_auth_int.h crypt_bcrypt.h gnutls_random.h crypt_srpsha1.h \
x509_b64.h gnutls_srp.h auth_srp.h auth_srp_passwd.h gnutls_v2_compat.h \
crypt.h libgnutls-config.in libgnutls.m4 gnutls.h.in.in gnutls_errors_int.h \
- x509_asn1.h x509_der.h gnutls_datum.h auth_cert.h gnutls_gcry.h \
+ x509_asn1.h x509_der.h gnutls_datum.h auth_cert.h gnutls_mpi.h \
gnutls_pk.h gnutls_record.h gnutls_cert.h \
gnutls_privkey.h gnutls_constate.h gnutls_global.h x509_verify.h \
gnutls_sig.h gnutls_mem.h x509_extensions.h gnutls_ui.h \
@@ -33,7 +33,7 @@ COBJECTS = gnutls_record.c gnutls_compress.c debug.c \
crypt_bcrypt.c crypt.c gnutls_random.c crypt_srpsha1.c gnutls_srp.c \
auth_srp.c auth_srp_passwd.c gnutls_v2_compat.c auth_srp_sb64.c \
gnutls_datum.c auth_rsa.c gnutls_session_pack.c \
- gnutls_gcry.c gnutls_pk.c gnutls_cert.c x509_verify.c\
+ gnutls_mpi.c gnutls_pk.c gnutls_cert.c x509_verify.c\
gnutls_global.c gnutls_privkey.c gnutls_constate.c gnutls_anon_cred.c \
x509_sig_check.c pkix_asn1_tab.c gnutls_asn1_tab.c gnutls_mem.c \
x509_extensions.c auth_cert.c gnutls_ui.c gnutls_sig.c auth_dhe.c \
diff --git a/lib/gnutls_int.h b/lib/gnutls_int.h
index bbaf3013da..274bf36c72 100644
--- a/lib/gnutls_int.h
+++ b/lib/gnutls_int.h
@@ -97,9 +97,7 @@ typedef const int* GNUTLS_LIST;
typedef unsigned char opaque;
typedef struct { opaque pint[3]; } uint24;
-#ifdef USE_GCRYPT
-# include <gnutls_gcry.h>
-#endif
+# include <gnutls_mpi.h>
typedef enum crypt_algo { SRPSHA1_CRYPT, BLOWFISH_CRYPT=2 } crypt_algo;
typedef enum ChangeCipherSpecType { GNUTLS_TYPE_CHANGE_CIPHER_SPEC=1 } ChangeCipherSpecType;
diff --git a/lib/gnutls_gcry.c b/lib/gnutls_mpi.c
index a18908ea66..a18908ea66 100644
--- a/lib/gnutls_gcry.c
+++ b/lib/gnutls_mpi.c
diff --git a/lib/gnutls_gcry.h b/lib/gnutls_mpi.h
index 2248951a52..ba936559cd 100644
--- a/lib/gnutls_gcry.h
+++ b/lib/gnutls_mpi.h
@@ -1,5 +1,5 @@
-#ifndef GNUTLS_GCRY_H
-# define GNUTLS_GCRY_H
+#ifndef GNUTLS_MPI_H
+# define GNUTLS_MPI_H
# include <gcrypt.h>
# include <x509_asn1.h>