mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH 1/5] include: crypto: import des.h from kernel
@ 2016-02-26 16:29 Steffen Trumtrar
  2016-02-26 16:29 ` [PATCH 2/5] include: crypto: add simplified ablkcipher struct Steffen Trumtrar
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Steffen Trumtrar @ 2016-02-26 16:29 UTC (permalink / raw)
  To: barebox; +Cc: Steffen Trumtrar

Import just the DES defines part from the v4.0 Linux Kernel
crypto des header.

Signed-off-by: Steffen Trumtrar <s.trumtrar@pengutronix.de>
---
 include/crypto/des.h | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
 create mode 100644 include/crypto/des.h

diff --git a/include/crypto/des.h b/include/crypto/des.h
new file mode 100644
index 000000000000..58fdaaa99d7b
--- /dev/null
+++ b/include/crypto/des.h
@@ -0,0 +1,16 @@
+/* 
+ * DES & Triple DES EDE Cipher Algorithms.
+ */
+
+#ifndef __CRYPTO_DES_H
+#define __CRYPTO_DES_H
+
+#define DES_KEY_SIZE		8
+#define DES_EXPKEY_WORDS	32
+#define DES_BLOCK_SIZE		8
+
+#define DES3_EDE_KEY_SIZE	(3 * DES_KEY_SIZE)
+#define DES3_EDE_EXPKEY_WORDS	(3 * DES_EXPKEY_WORDS)
+#define DES3_EDE_BLOCK_SIZE	DES_BLOCK_SIZE
+
+#endif /* __CRYPTO_DES_H */
-- 
2.7.0


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-02-26 16:30 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-26 16:29 [PATCH 1/5] include: crypto: import des.h from kernel Steffen Trumtrar
2016-02-26 16:29 ` [PATCH 2/5] include: crypto: add simplified ablkcipher struct Steffen Trumtrar
2016-02-26 16:29 ` [PATCH 3/5] ARM: i.MX25: enable SCC clock Steffen Trumtrar
2016-02-26 16:29 ` [PATCH 4/5] ARM: i.MX25: dtsi: add scc node Steffen Trumtrar
2016-02-26 16:29 ` [PATCH 5/5] crypto: add new mxc-scc driver Steffen Trumtrar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox