summaryrefslogtreecommitdiff
path: root/lib/accelerated
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2015-08-23 19:19:45 +0200
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2015-08-23 19:27:01 +0200
commitf84d8c0d536a1b6a160ddceadf7fade8d7b2edaa (patch)
treeea8ded214d074604f4bbfbd9ed31a07beb48f21d /lib/accelerated
parent172ae7efd99ce30d3bdfc2a35e0335687ef70a0f (diff)
downloadgnutls-f84d8c0d536a1b6a160ddceadf7fade8d7b2edaa.tar.gz
Removed the 'gnutls_' prefix from files to simplify file naming
Diffstat (limited to 'lib/accelerated')
-rw-r--r--lib/accelerated/cryptodev-gcm.c6
-rw-r--r--lib/accelerated/cryptodev.c6
-rw-r--r--lib/accelerated/x86/aes-cbc-x86-aesni.c6
-rw-r--r--lib/accelerated/x86/aes-cbc-x86-ssse3.c6
-rw-r--r--lib/accelerated/x86/aes-ccm-x86-aesni.c6
-rw-r--r--lib/accelerated/x86/aes-gcm-padlock.c6
-rw-r--r--lib/accelerated/x86/aes-gcm-x86-aesni.c6
-rw-r--r--lib/accelerated/x86/aes-gcm-x86-pclmul.c6
-rw-r--r--lib/accelerated/x86/aes-gcm-x86-ssse3.c6
-rw-r--r--lib/accelerated/x86/aes-padlock.c6
-rw-r--r--lib/accelerated/x86/aes-padlock.h2
-rw-r--r--lib/accelerated/x86/aes-x86.h2
-rw-r--r--lib/accelerated/x86/hmac-padlock.c6
-rw-r--r--lib/accelerated/x86/hmac-x86-ssse3.c6
-rw-r--r--lib/accelerated/x86/sha-padlock.c6
-rw-r--r--lib/accelerated/x86/sha-x86-ssse3.c6
-rw-r--r--lib/accelerated/x86/x86-common.c6
17 files changed, 47 insertions, 47 deletions
diff --git a/lib/accelerated/cryptodev-gcm.c b/lib/accelerated/cryptodev-gcm.c
index 52f9e85b8c..e992b63b47 100644
--- a/lib/accelerated/cryptodev-gcm.c
+++ b/lib/accelerated/cryptodev-gcm.c
@@ -20,10 +20,10 @@
*
*/
-#include <gnutls_errors.h>
-#include <gnutls_int.h>
+#include "errors.h"
+#include "gnutls_int.h"
#include <gnutls/crypto.h>
-#include <gnutls_errors.h>
+#include "errors.h"
#include <accelerated/cryptodev.h>
#ifdef ENABLE_CRYPTODEV
diff --git a/lib/accelerated/cryptodev.c b/lib/accelerated/cryptodev.c
index c67dfd2473..03a5d66360 100644
--- a/lib/accelerated/cryptodev.c
+++ b/lib/accelerated/cryptodev.c
@@ -20,10 +20,10 @@
*
*/
-#include <gnutls_errors.h>
-#include <gnutls_int.h>
+#include "errors.h"
+#include "gnutls_int.h"
#include <gnutls/crypto.h>
-#include <gnutls_errors.h>
+#include "errors.h"
#include <accelerated/cryptodev.h>
#ifdef ENABLE_CRYPTODEV
diff --git a/lib/accelerated/x86/aes-cbc-x86-aesni.c b/lib/accelerated/x86/aes-cbc-x86-aesni.c
index 74a67e7da4..b935db9723 100644
--- a/lib/accelerated/x86/aes-cbc-x86-aesni.c
+++ b/lib/accelerated/x86/aes-cbc-x86-aesni.c
@@ -25,10 +25,10 @@
* using intel's AES instruction set.
*/
-#include <gnutls_errors.h>
-#include <gnutls_int.h>
+#include "errors.h"
+#include "gnutls_int.h"
#include <gnutls/crypto.h>
-#include <gnutls_errors.h>
+#include "errors.h"
#include <aes-x86.h>
#include <sha-x86.h>
#include <x86-common.h>
diff --git a/lib/accelerated/x86/aes-cbc-x86-ssse3.c b/lib/accelerated/x86/aes-cbc-x86-ssse3.c
index 0617d203c8..9e367cad94 100644
--- a/lib/accelerated/x86/aes-cbc-x86-ssse3.c
+++ b/lib/accelerated/x86/aes-cbc-x86-ssse3.c
@@ -25,10 +25,10 @@
* using intel's AES instruction set.
*/
-#include <gnutls_errors.h>
-#include <gnutls_int.h>
+#include "errors.h"
+#include "gnutls_int.h"
#include <gnutls/crypto.h>
-#include <gnutls_errors.h>
+#include "errors.h"
#include <aes-x86.h>
#include <sha-x86.h>
#include <x86-common.h>
diff --git a/lib/accelerated/x86/aes-ccm-x86-aesni.c b/lib/accelerated/x86/aes-ccm-x86-aesni.c
index fb8ba766c9..4828a229df 100644
--- a/lib/accelerated/x86/aes-ccm-x86-aesni.c
+++ b/lib/accelerated/x86/aes-ccm-x86-aesni.c
@@ -25,13 +25,13 @@
* using AESNI (without PCLMUL)
*/
-#include <gnutls_errors.h>
-#include <gnutls_int.h>
+#include "errors.h"
+#include "gnutls_int.h"
#ifdef HAVE_LIBNETTLE
#include <gnutls/crypto.h>
-#include <gnutls_errors.h>
+#include "errors.h"
#include <aes-x86.h>
#include <x86-common.h>
#include <byteswap.h>
diff --git a/lib/accelerated/x86/aes-gcm-padlock.c b/lib/accelerated/x86/aes-gcm-padlock.c
index 410cfc055f..51b02a8d5c 100644
--- a/lib/accelerated/x86/aes-gcm-padlock.c
+++ b/lib/accelerated/x86/aes-gcm-padlock.c
@@ -24,13 +24,13 @@
* The following code is an implementation of the AES-128-GCM cipher
*/
-#include <gnutls_errors.h>
-#include <gnutls_int.h>
+#include "errors.h"
+#include "gnutls_int.h"
#ifdef HAVE_LIBNETTLE
#include <gnutls/crypto.h>
-#include <gnutls_errors.h>
+#include "errors.h"
#include <aes-x86.h>
#include <x86-common.h>
#include <byteswap.h>
diff --git a/lib/accelerated/x86/aes-gcm-x86-aesni.c b/lib/accelerated/x86/aes-gcm-x86-aesni.c
index d102732ff4..9cae528912 100644
--- a/lib/accelerated/x86/aes-gcm-x86-aesni.c
+++ b/lib/accelerated/x86/aes-gcm-x86-aesni.c
@@ -25,13 +25,13 @@
* using AESNI (without PCLMUL)
*/
-#include <gnutls_errors.h>
-#include <gnutls_int.h>
+#include "errors.h"
+#include "gnutls_int.h"
#ifdef HAVE_LIBNETTLE
#include <gnutls/crypto.h>
-#include <gnutls_errors.h>
+#include "errors.h"
#include <aes-x86.h>
#include <x86-common.h>
#include <byteswap.h>
diff --git a/lib/accelerated/x86/aes-gcm-x86-pclmul.c b/lib/accelerated/x86/aes-gcm-x86-pclmul.c
index b6672d64f0..40d4769803 100644
--- a/lib/accelerated/x86/aes-gcm-x86-pclmul.c
+++ b/lib/accelerated/x86/aes-gcm-x86-pclmul.c
@@ -25,10 +25,10 @@
* using intel's AES instruction set.
*/
-#include <gnutls_errors.h>
-#include <gnutls_int.h>
+#include "errors.h"
+#include "gnutls_int.h"
#include <gnutls/crypto.h>
-#include <gnutls_errors.h>
+#include "errors.h"
#include <aes-x86.h>
#include <x86-common.h>
#include <nettle/memxor.h>
diff --git a/lib/accelerated/x86/aes-gcm-x86-ssse3.c b/lib/accelerated/x86/aes-gcm-x86-ssse3.c
index a655eb44b6..512a8cffd7 100644
--- a/lib/accelerated/x86/aes-gcm-x86-ssse3.c
+++ b/lib/accelerated/x86/aes-gcm-x86-ssse3.c
@@ -24,13 +24,13 @@
* The following code is an implementation of the AES-128-GCM cipher
*/
-#include <gnutls_errors.h>
-#include <gnutls_int.h>
+#include "errors.h"
+#include "gnutls_int.h"
#ifdef HAVE_LIBNETTLE
#include <gnutls/crypto.h>
-#include <gnutls_errors.h>
+#include "errors.h"
#include <aes-x86.h>
#include <x86-common.h>
#include <byteswap.h>
diff --git a/lib/accelerated/x86/aes-padlock.c b/lib/accelerated/x86/aes-padlock.c
index 3e1c4f5a14..ceda0faa5f 100644
--- a/lib/accelerated/x86/aes-padlock.c
+++ b/lib/accelerated/x86/aes-padlock.c
@@ -25,10 +25,10 @@
* using VIA Padlock instruction set.
*/
-#include <gnutls_errors.h>
-#include <gnutls_int.h>
+#include "errors.h"
+#include "gnutls_int.h"
#include <gnutls/crypto.h>
-#include <gnutls_errors.h>
+#include "errors.h"
#include <aes-x86.h>
#include <x86-common.h>
#ifdef HAVE_LIBNETTLE
diff --git a/lib/accelerated/x86/aes-padlock.h b/lib/accelerated/x86/aes-padlock.h
index d19ad48d47..cff3128f14 100644
--- a/lib/accelerated/x86/aes-padlock.h
+++ b/lib/accelerated/x86/aes-padlock.h
@@ -1,7 +1,7 @@
#ifndef AES_PADLOCK_H
#define AES_PADLOCK_H
-#include <gnutls_int.h>
+#include "gnutls_int.h"
#include <aes-x86.h>
struct padlock_cipher_data {
diff --git a/lib/accelerated/x86/aes-x86.h b/lib/accelerated/x86/aes-x86.h
index 4de2631709..e25991bb8c 100644
--- a/lib/accelerated/x86/aes-x86.h
+++ b/lib/accelerated/x86/aes-x86.h
@@ -1,7 +1,7 @@
#ifndef AES_X86_H
#define AES_X86_H
-#include <gnutls_int.h>
+#include "gnutls_int.h"
void register_x86_crypto(void);
diff --git a/lib/accelerated/x86/hmac-padlock.c b/lib/accelerated/x86/hmac-padlock.c
index 868e9f725b..1d1a1bd1e6 100644
--- a/lib/accelerated/x86/hmac-padlock.c
+++ b/lib/accelerated/x86/hmac-padlock.c
@@ -24,9 +24,9 @@
* VIA Padlock hardware acceleration.
*/
-#include <gnutls_int.h>
-#include <gnutls_hash_int.h>
-#include <gnutls_errors.h>
+#include "gnutls_int.h"
+#include <hash_int.h>
+#include "errors.h"
#include <nettle/sha.h>
#include <nettle/hmac.h>
#include <nettle/macros.h>
diff --git a/lib/accelerated/x86/hmac-x86-ssse3.c b/lib/accelerated/x86/hmac-x86-ssse3.c
index 0d5004d30c..54a81140c4 100644
--- a/lib/accelerated/x86/hmac-x86-ssse3.c
+++ b/lib/accelerated/x86/hmac-x86-ssse3.c
@@ -24,9 +24,9 @@
* VIA Padlock hardware acceleration.
*/
-#include <gnutls_int.h>
-#include <gnutls_hash_int.h>
-#include <gnutls_errors.h>
+#include "gnutls_int.h"
+#include <hash_int.h>
+#include "errors.h"
#include <nettle/sha.h>
#include <nettle/hmac.h>
#include <nettle/macros.h>
diff --git a/lib/accelerated/x86/sha-padlock.c b/lib/accelerated/x86/sha-padlock.c
index 04b42e455e..dc74a50f53 100644
--- a/lib/accelerated/x86/sha-padlock.c
+++ b/lib/accelerated/x86/sha-padlock.c
@@ -21,9 +21,9 @@
*
*/
-#include <gnutls_int.h>
-#include <gnutls_hash_int.h>
-#include <gnutls_errors.h>
+#include "gnutls_int.h"
+#include <hash_int.h>
+#include "errors.h"
#include <nettle/sha.h>
#include <nettle/hmac.h>
#include <nettle/macros.h>
diff --git a/lib/accelerated/x86/sha-x86-ssse3.c b/lib/accelerated/x86/sha-x86-ssse3.c
index 52c6ab0ac4..e99885bcf2 100644
--- a/lib/accelerated/x86/sha-x86-ssse3.c
+++ b/lib/accelerated/x86/sha-x86-ssse3.c
@@ -20,10 +20,10 @@
*
*/
-#include <gnutls_errors.h>
-#include <gnutls_int.h>
+#include "errors.h"
+#include "gnutls_int.h"
#include <gnutls/crypto.h>
-#include <gnutls_errors.h>
+#include "errors.h"
#include <aes-x86.h>
#include <nettle/sha.h>
#include <nettle/macros.h>
diff --git a/lib/accelerated/x86/x86-common.c b/lib/accelerated/x86/x86-common.c
index 0f355cc411..18e3710362 100644
--- a/lib/accelerated/x86/x86-common.c
+++ b/lib/accelerated/x86/x86-common.c
@@ -25,10 +25,10 @@
* using intel's AES instruction set.
*/
-#include <gnutls_errors.h>
-#include <gnutls_int.h>
+#include "errors.h"
+#include "gnutls_int.h"
#include <gnutls/crypto.h>
-#include <gnutls_errors.h>
+#include "errors.h"
#include <aes-x86.h>
#include <sha-x86.h>
#include <x86-common.h>