diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2015-08-23 19:19:45 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2015-08-23 19:27:01 +0200 |
commit | f84d8c0d536a1b6a160ddceadf7fade8d7b2edaa (patch) | |
tree | ea8ded214d074604f4bbfbd9ed31a07beb48f21d /lib/crypto-backend.c | |
parent | 172ae7efd99ce30d3bdfc2a35e0335687ef70a0f (diff) | |
download | gnutls-f84d8c0d536a1b6a160ddceadf7fade8d7b2edaa.tar.gz |
Removed the 'gnutls_' prefix from files to simplify file naming
Diffstat (limited to 'lib/crypto-backend.c')
-rw-r--r-- | lib/crypto-backend.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/crypto-backend.c b/lib/crypto-backend.c index 714f86f9fb..32f66d3e14 100644 --- a/lib/crypto-backend.c +++ b/lib/crypto-backend.c @@ -20,15 +20,15 @@ * */ -#include <gnutls_errors.h> -#include <gnutls_int.h> +#include "errors.h" +#include "gnutls_int.h" #include <gnutls/crypto.h> #include <crypto-backend.h> #include <crypto.h> -#include <gnutls_mpi.h> -#include <gnutls_pk.h> +#include <mpi.h> +#include <pk.h> #include <random.h> -#include <gnutls_cipher_int.h> +#include <cipher_int.h> /* default values for priorities */ int crypto_mac_prio = INT_MAX; |