summaryrefslogtreecommitdiff
path: root/serpent-meta.c
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2002-01-12 15:30:35 +0100
committerNiels Möller <nisse@lysator.liu.se>2002-01-12 15:30:35 +0100
commit788920ec775bced143e1a405794d9dd6617c56a7 (patch)
treecb2e525b0d12a961a8f312c02109f00ed43d5b29 /serpent-meta.c
parent9d4b4dfe7cb75f6f139f1dce5c8f300f118711bd (diff)
downloadnettle-788920ec775bced143e1a405794d9dd6617c56a7.tar.gz
* aes-meta.c: New file.
* arcfour-meta.c: New file. * cast128-meta.c: New file. * serpent-meta.c: New file. * twofish-meta.c: New file. Rev: src/nettle/aes-meta.c:1.1 Rev: src/nettle/arcfour-meta.c:1.1 Rev: src/nettle/cast128-meta.c:1.1 Rev: src/nettle/serpent-meta.c:1.1 Rev: src/nettle/twofish-meta.c:1.1
Diffstat (limited to 'serpent-meta.c')
-rw-r--r--serpent-meta.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/serpent-meta.c b/serpent-meta.c
new file mode 100644
index 00000000..b95c49dc
--- /dev/null
+++ b/serpent-meta.c
@@ -0,0 +1,34 @@
+/* serpent-meta.c */
+
+/* nettle, low-level cryptographics library
+ *
+ * Copyright (C) 2002 Niels Möller
+ *
+ * The nettle library is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation; either version 2.1 of the License, or (at your
+ * option) any later version.
+ *
+ * The nettle library is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ * License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with the nettle library; see the file COPYING.LIB. If not, write to
+ * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
+ * MA 02111-1307, USA.
+ */
+
+#include "nettle-meta.h"
+
+#include "serpent.h"
+
+const struct nettle_cipher nettle_serpent128
+= _NETTLE_CIPHER(serpent, SERPENT, 128);
+
+const struct nettle_cipher nettle_serpent192
+= _NETTLE_CIPHER(serpent, SERPENT, 192);
+
+const struct nettle_cipher nettle_serpent256
+= _NETTLE_CIPHER(serpent, SERPENT, 256);