summaryrefslogtreecommitdiff
path: root/yarrow.h
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2001-10-04 18:41:54 +0200
committerNiels Möller <nisse@lysator.liu.se>2001-10-04 18:41:54 +0200
commitc31a6ec5d4dbfb23ac9ef94927c2009a700927d3 (patch)
treeea7fcb2d003728e77ee0d50af5f47d563361578a /yarrow.h
parent743b5bf447b3c674b857e43733f5053a53bb15e9 (diff)
downloadnettle-c31a6ec5d4dbfb23ac9ef94927c2009a700927d3.tar.gz
New files.
Rev: src/nettle/rsa-compat.h:1.1 Rev: src/nettle/rsa.h:1.1 Rev: src/nettle/yarrow.h:1.1
Diffstat (limited to 'yarrow.h')
-rw-r--r--yarrow.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/yarrow.h b/yarrow.h
new file mode 100644
index 00000000..0b691e8a
--- /dev/null
+++ b/yarrow.h
@@ -0,0 +1,45 @@
+/* yarrow.h
+ *
+ * The yarrow pseudo-randomness generator.
+ */
+
+/* nettle, low-level cryptographics library
+ *
+ * Copyright (C) 2001 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_YARROW_COMPAT_H_INCLUDED
+#define NETTLE_YARROW_COMPAT_H_INCLUDED
+
+struct yarrow160_ctx
+{
+};
+
+void
+yarrow160_init(struct *yarrow160_ctx);
+
+void
+yarrow160_update(struct *yarrow160_ctx, unsigned length, const uint8_t *data);
+
+void
+yarrow160_random(struct *yarrow160_ctx, unsigned length, uint8_t dst);
+
+unsigned
+yarrow160_needed(struct *yarrow160_ctx);
+
+#endif /* NETTLE_YARROW_COMPAT_H_INCLUDED */