summaryrefslogtreecommitdiff
path: root/nettle-internal.h
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2002-01-14 15:45:59 +0100
committerNiels Möller <nisse@lysator.liu.se>2002-01-14 15:45:59 +0100
commit127f55dc5d0707350b96ca9ddd9aeb65ef9910a6 (patch)
tree2c36c4e77f910262e5f30987effc79130f48fdc3 /nettle-internal.h
parent2e8e5505775f93de21018d01994916dfb1dbb0f1 (diff)
downloadnettle-127f55dc5d0707350b96ca9ddd9aeb65ef9910a6.tar.gz
New files.
Rev: src/nettle/nettle-internal.c:1.1 Rev: src/nettle/nettle-internal.h:1.1
Diffstat (limited to 'nettle-internal.h')
-rw-r--r--nettle-internal.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/nettle-internal.h b/nettle-internal.h
new file mode 100644
index 00000000..5771829c
--- /dev/null
+++ b/nettle-internal.h
@@ -0,0 +1,41 @@
+/* nettle-internal.h
+ *
+ * Things that are used only by the testsuite and benchmark, and
+ * subject to change.
+ */
+
+/* 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.
+ */
+
+#ifndef NETTLE_INTERNAL_H_INCLUDED
+#define NETTLE_INTERNAL_H_INCLUDED
+
+#include "nettle-meta.h"
+
+/* Doesn't quite fit with the other algorithms, because of the weak
+ * keys. Weak keys are not reported, the functions will simply crash
+ * if you try to use a weak key. */
+
+extern const struct nettle_cipher nettle_des;
+extern const struct nettle_cipher nettle_des3;
+
+extern const struct nettle_cipher nettle_blowfish128;
+
+#endif /* NETTLE_INTERNAL_H_INCLUDED */