summaryrefslogtreecommitdiffstats
path: root/freebsd/crypto/rijndael
diff options
context:
space:
mode:
Diffstat (limited to 'freebsd/crypto/rijndael')
-rw-r--r--freebsd/crypto/rijndael/rijndael-alg-fst.c18
-rw-r--r--freebsd/crypto/rijndael/rijndael-api-fst.c14
-rw-r--r--freebsd/crypto/rijndael/rijndael-api-fst.h2
-rw-r--r--freebsd/crypto/rijndael/rijndael-api.c10
4 files changed, 22 insertions, 22 deletions
diff --git a/freebsd/crypto/rijndael/rijndael-alg-fst.c b/freebsd/crypto/rijndael/rijndael-alg-fst.c
index daeedee4..351f6526 100644
--- a/freebsd/crypto/rijndael/rijndael-alg-fst.c
+++ b/freebsd/crypto/rijndael/rijndael-alg-fst.c
@@ -1,4 +1,4 @@
-#include <rtems/freebsd/machine/rtems-bsd-config.h>
+#include <freebsd/machine/rtems-bsd-config.h>
/* $KAME: rijndael-alg-fst.c,v 1.10 2003/07/15 10:47:16 itojun Exp $ */
/**
@@ -26,21 +26,21 @@
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include <rtems/freebsd/sys/cdefs.h>
+#include <freebsd/sys/cdefs.h>
__FBSDID("$FreeBSD$");
-#include <rtems/freebsd/sys/cdefs.h>
-#include <rtems/freebsd/sys/types.h>
+#include <freebsd/sys/cdefs.h>
+#include <freebsd/sys/types.h>
#ifdef _KERNEL
-#include <rtems/freebsd/sys/systm.h>
+#include <freebsd/sys/systm.h>
#else
-#include <rtems/freebsd/string.h>
-#include <rtems/freebsd/assert.h>
+#include <freebsd/string.h>
+#include <freebsd/assert.h>
#define KASSERT(exp, msg) assert(exp)
#endif
-#include <rtems/freebsd/crypto/rijndael/rijndael.h>
-#include <rtems/freebsd/crypto/rijndael/rijndael_local.h>
+#include <freebsd/crypto/rijndael/rijndael.h>
+#include <freebsd/crypto/rijndael/rijndael_local.h>
/*
Te0[x] = S [x].[02, 01, 01, 03];
diff --git a/freebsd/crypto/rijndael/rijndael-api-fst.c b/freebsd/crypto/rijndael/rijndael-api-fst.c
index 30cc96ce..d63997e5 100644
--- a/freebsd/crypto/rijndael/rijndael-api-fst.c
+++ b/freebsd/crypto/rijndael/rijndael-api-fst.c
@@ -1,4 +1,4 @@
-#include <rtems/freebsd/machine/rtems-bsd-config.h>
+#include <freebsd/machine/rtems-bsd-config.h>
/* $KAME: rijndael-api-fst.c,v 1.10 2001/05/27 09:34:18 itojun Exp $ */
@@ -17,18 +17,18 @@
* This code is placed in the public domain.
*/
-#include <rtems/freebsd/sys/cdefs.h>
+#include <freebsd/sys/cdefs.h>
__FBSDID("$FreeBSD$");
-#include <rtems/freebsd/sys/param.h>
+#include <freebsd/sys/param.h>
#ifdef _KERNEL
-#include <rtems/freebsd/sys/systm.h>
+#include <freebsd/sys/systm.h>
#else
-#include <rtems/freebsd/string.h>
+#include <freebsd/string.h>
#endif
-#include <rtems/freebsd/crypto/rijndael/rijndael_local.h>
-#include <rtems/freebsd/crypto/rijndael/rijndael-api-fst.h>
+#include <freebsd/crypto/rijndael/rijndael_local.h>
+#include <freebsd/crypto/rijndael/rijndael-api-fst.h>
#ifndef TRUE
#define TRUE 1
diff --git a/freebsd/crypto/rijndael/rijndael-api-fst.h b/freebsd/crypto/rijndael/rijndael-api-fst.h
index 4bc909bd..f21cb790 100644
--- a/freebsd/crypto/rijndael/rijndael-api-fst.h
+++ b/freebsd/crypto/rijndael/rijndael-api-fst.h
@@ -11,7 +11,7 @@
#ifndef __RIJNDAEL_API_FST_H
#define __RIJNDAEL_API_FST_H
-#include <rtems/freebsd/crypto/rijndael/rijndael.h>
+#include <freebsd/crypto/rijndael/rijndael.h>
/* Generic Defines */
#define DIR_ENCRYPT 0 /* Are we encrpyting? */
diff --git a/freebsd/crypto/rijndael/rijndael-api.c b/freebsd/crypto/rijndael/rijndael-api.c
index 141a22f9..2134aa5c 100644
--- a/freebsd/crypto/rijndael/rijndael-api.c
+++ b/freebsd/crypto/rijndael/rijndael-api.c
@@ -1,4 +1,4 @@
-#include <rtems/freebsd/machine/rtems-bsd-config.h>
+#include <freebsd/machine/rtems-bsd-config.h>
/* $KAME: rijndael.c,v 1.3 2003/08/28 14:20:22 itojun Exp $ */
@@ -28,15 +28,15 @@
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include <rtems/freebsd/sys/cdefs.h>
+#include <freebsd/sys/cdefs.h>
__FBSDID("$FreeBSD$");
-#include <rtems/freebsd/sys/types.h>
+#include <freebsd/sys/types.h>
#ifdef _KERNEL
-#include <rtems/freebsd/sys/systm.h>
+#include <freebsd/sys/systm.h>
#endif
-#include <rtems/freebsd/crypto/rijndael/rijndael.h>
+#include <freebsd/crypto/rijndael/rijndael.h>
void
rijndael_set_key(rijndael_ctx *ctx, const u_char *key, int bits)