aboutsummaryrefslogtreecommitdiff
path: root/src/crypto
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypto')
-rw-r--r--src/crypto/aes_wrap.c4
-rw-r--r--src/crypto/arc4.c4
-rw-r--r--src/crypto/asn1.c2
-rw-r--r--src/crypto/axtls_aes.c6
-rw-r--r--src/crypto/axtls_sha1.c4
-rw-r--r--src/crypto/cbc.c4
-rw-r--r--src/crypto/chap.c4
-rw-r--r--src/crypto/crandom.c2
-rw-r--r--src/crypto/crc32.c2
-rw-r--r--src/crypto/crypto_null.c2
-rw-r--r--src/crypto/hmac.c4
-rw-r--r--src/crypto/md5.c4
-rw-r--r--src/crypto/sha1extra.c6
-rw-r--r--src/crypto/x509.c4
14 files changed, 26 insertions, 26 deletions
diff --git a/src/crypto/aes_wrap.c b/src/crypto/aes_wrap.c
index d7f94af..46ef016 100644
--- a/src/crypto/aes_wrap.c
+++ b/src/crypto/aes_wrap.c
@@ -20,8 +20,8 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <stdlib.h>
#include <string.h>
-#include <gpxe/crypto.h>
-#include <gpxe/aes.h>
+#include <ipxe/crypto.h>
+#include <ipxe/aes.h>
/**
* Wrap a key or other data using AES Key Wrap (RFC 3394)
diff --git a/src/crypto/arc4.c b/src/crypto/arc4.c
index e58fba7..ab3325c 100644
--- a/src/crypto/arc4.c
+++ b/src/crypto/arc4.c
@@ -20,8 +20,8 @@
FILE_LICENCE ( GPL2_OR_LATER );
-#include <gpxe/crypto.h>
-#include <gpxe/arc4.h>
+#include <ipxe/crypto.h>
+#include <ipxe/arc4.h>
#define SWAP( ary, i, j ) \
({ u8 temp = ary[i]; ary[i] = ary[j]; ary[j] = temp; })
diff --git a/src/crypto/asn1.c b/src/crypto/asn1.c
index 154a8a8..a54d31d 100644
--- a/src/crypto/asn1.c
+++ b/src/crypto/asn1.c
@@ -21,7 +21,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <stdint.h>
#include <stddef.h>
#include <errno.h>
-#include <gpxe/asn1.h>
+#include <ipxe/asn1.h>
/** @file
*
diff --git a/src/crypto/axtls_aes.c b/src/crypto/axtls_aes.c
index 8bd3758..b73a572 100644
--- a/src/crypto/axtls_aes.c
+++ b/src/crypto/axtls_aes.c
@@ -21,9 +21,9 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <string.h>
#include <errno.h>
#include <byteswap.h>
-#include <gpxe/crypto.h>
-#include <gpxe/cbc.h>
-#include <gpxe/aes.h>
+#include <ipxe/crypto.h>
+#include <ipxe/cbc.h>
+#include <ipxe/aes.h>
#include "crypto/axtls/crypto.h"
/** @file
diff --git a/src/crypto/axtls_sha1.c b/src/crypto/axtls_sha1.c
index 841e193..3eb8912 100644
--- a/src/crypto/axtls_sha1.c
+++ b/src/crypto/axtls_sha1.c
@@ -1,6 +1,6 @@
#include "crypto/axtls/crypto.h"
-#include <gpxe/crypto.h>
-#include <gpxe/sha1.h>
+#include <ipxe/crypto.h>
+#include <ipxe/sha1.h>
static void sha1_init ( void *ctx ) {
SHA1Init ( ctx );
diff --git a/src/crypto/cbc.c b/src/crypto/cbc.c
index 1710203..c00ebb0 100644
--- a/src/crypto/cbc.c
+++ b/src/crypto/cbc.c
@@ -20,8 +20,8 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <string.h>
#include <assert.h>
-#include <gpxe/crypto.h>
-#include <gpxe/cbc.h>
+#include <ipxe/crypto.h>
+#include <ipxe/cbc.h>
/** @file
*
diff --git a/src/crypto/chap.c b/src/crypto/chap.c
index 8aa224c..492d221 100644
--- a/src/crypto/chap.c
+++ b/src/crypto/chap.c
@@ -23,8 +23,8 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <string.h>
#include <errno.h>
#include <assert.h>
-#include <gpxe/crypto.h>
-#include <gpxe/chap.h>
+#include <ipxe/crypto.h>
+#include <ipxe/chap.h>
/** @file
*
diff --git a/src/crypto/crandom.c b/src/crypto/crandom.c
index 9828482..1886f9b 100644
--- a/src/crypto/crandom.c
+++ b/src/crypto/crandom.c
@@ -26,7 +26,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
* uses random().
*/
-#include <gpxe/crypto.h>
+#include <ipxe/crypto.h>
#include <stdlib.h>
/**
diff --git a/src/crypto/crc32.c b/src/crypto/crc32.c
index 0cc314e..71ec1d6 100644
--- a/src/crypto/crc32.c
+++ b/src/crypto/crc32.c
@@ -20,7 +20,7 @@
FILE_LICENCE ( GPL2_OR_LATER );
-#include <gpxe/crc32.h>
+#include <ipxe/crc32.h>
#define CRCPOLY 0xedb88320
diff --git a/src/crypto/crypto_null.c b/src/crypto/crypto_null.c
index 61efb34..c9c32ae 100644
--- a/src/crypto/crypto_null.c
+++ b/src/crypto/crypto_null.c
@@ -25,7 +25,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
*/
#include <string.h>
-#include <gpxe/crypto.h>
+#include <ipxe/crypto.h>
static void digest_null_init ( void *ctx __unused ) {
/* Do nothing */
diff --git a/src/crypto/hmac.c b/src/crypto/hmac.c
index d64730c..6b61dc4 100644
--- a/src/crypto/hmac.c
+++ b/src/crypto/hmac.c
@@ -26,8 +26,8 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <string.h>
#include <assert.h>
-#include <gpxe/crypto.h>
-#include <gpxe/hmac.h>
+#include <ipxe/crypto.h>
+#include <ipxe/hmac.h>
/**
* Reduce HMAC key length
diff --git a/src/crypto/md5.c b/src/crypto/md5.c
index 8c60639..ef322ad 100644
--- a/src/crypto/md5.c
+++ b/src/crypto/md5.c
@@ -25,8 +25,8 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <stdint.h>
#include <string.h>
#include <byteswap.h>
-#include <gpxe/crypto.h>
-#include <gpxe/md5.h>
+#include <ipxe/crypto.h>
+#include <ipxe/md5.h>
struct md5_step {
u32 ( * f ) ( u32 b, u32 c, u32 d );
diff --git a/src/crypto/sha1extra.c b/src/crypto/sha1extra.c
index c144a0f..74445e9 100644
--- a/src/crypto/sha1extra.c
+++ b/src/crypto/sha1extra.c
@@ -18,9 +18,9 @@
FILE_LICENCE ( GPL2_OR_LATER );
-#include <gpxe/crypto.h>
-#include <gpxe/sha1.h>
-#include <gpxe/hmac.h>
+#include <ipxe/crypto.h>
+#include <ipxe/sha1.h>
+#include <ipxe/hmac.h>
#include <stdint.h>
#include <byteswap.h>
diff --git a/src/crypto/x509.c b/src/crypto/x509.c
index 31ed412..49bc2b8 100644
--- a/src/crypto/x509.c
+++ b/src/crypto/x509.c
@@ -21,8 +21,8 @@ FILE_LICENCE ( GPL2_OR_LATER );
#include <stdlib.h>
#include <string.h>
#include <errno.h>
-#include <gpxe/asn1.h>
-#include <gpxe/x509.h>
+#include <ipxe/asn1.h>
+#include <ipxe/x509.h>
/** @file
*