summaryrefslogtreecommitdiff
path: root/sbin/bioctl/pbkdf2.h
diff options
context:
space:
mode:
authorDamien Miller <djm@cvs.openbsd.org>2008-06-14 06:28:28 +0000
committerDamien Miller <djm@cvs.openbsd.org>2008-06-14 06:28:28 +0000
commitd1c956cced4b47ac4c24fd4a510a9cdbfaca7d1b (patch)
tree0bbe5c721803faec24f137c077638983be98ee83 /sbin/bioctl/pbkdf2.h
parent5267e13e6a0385ddc7c3db92e270bfc435bb4315 (diff)
Replace PBKDF2 implementation pulled in from vnconfig with one
derived from Damien Bergamini's wpa-psk. This implementation is smaller, cleaner and uses the libc SHA1 functions instead of pulling in OpenSSL. make bioctl.c -Wall clean too Verified with rfc3962 test vectors and against a assembled cryptoraid; ok hshoexer@
Diffstat (limited to 'sbin/bioctl/pbkdf2.h')
-rw-r--r--sbin/bioctl/pbkdf2.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/sbin/bioctl/pbkdf2.h b/sbin/bioctl/pbkdf2.h
new file mode 100644
index 00000000000..2ee04c72e46
--- /dev/null
+++ b/sbin/bioctl/pbkdf2.h
@@ -0,0 +1,24 @@
+/* $OpenBSD: pbkdf2.h,v 1.1 2008/06/14 06:28:27 djm Exp $ */
+
+/*-
+ * Copyright (c) 2008 Damien Bergamini <damien.bergamini@free.fr>
+ *
+ * Permission to use, copy, modify, and distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+/*
+ * Password-Based Key Derivation Function 2 (PKCS #5 v2.0).
+ * Code based on IEEE Std 802.11-2007, Annex H.4.2.
+ */
+int pkcs5_pbkdf2(const char *, size_t, const char *, size_t,
+ u_int8_t *, size_t, u_int);