]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
renamed gnutls_gcry* to gnutls_mpi*
authorNikos Mavrogiannopoulos <nmav@gnutls.org>
Wed, 8 May 2002 10:34:36 +0000 (10:34 +0000)
committerNikos Mavrogiannopoulos <nmav@gnutls.org>
Wed, 8 May 2002 10:34:36 +0000 (10:34 +0000)
lib/Makefile.am
lib/gnutls_int.h
lib/gnutls_mpi.c [moved from lib/gnutls_gcry.c with 100% similarity]
lib/gnutls_mpi.h [moved from lib/gnutls_gcry.h with 96% similarity]

index fcb62b6c51290a1b92e23e8956bac07228e3da7e..7129d11bae4274b8c203ba69bf9ddf1c20a1b21a 100644 (file)
@@ -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 \
index bbaf3013daf2bb8ce9e0e7b7f36724089e0ba70f..274bf36c72ac4b84dd635d9c43cae9f8921e0378 100644 (file)
@@ -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;
similarity index 100%
rename from lib/gnutls_gcry.c
rename to lib/gnutls_mpi.c
similarity index 96%
rename from lib/gnutls_gcry.h
rename to lib/gnutls_mpi.h
index 2248951a52df5603f2aad79a7e83cddd340f5091..ba936559cd95fa6d35dcebee4d3ae111e6c94b1c 100644 (file)
@@ -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>