aboutsummaryrefslogtreecommitdiffstats
path: root/src/crypto/dh_group5.c
diff options
context:
space:
mode:
authorJouni Malinen <j@w1.fi>2012-06-27 21:17:49 +0300
committerJouni Malinen <j@w1.fi>2012-06-27 21:22:12 +0300
commita0d0c560c3ded74ccb6f994d7608234f1bc24f18 (patch)
tree8a459261063b180f73cb1586df5d008ca85e2453 /src/crypto/dh_group5.c
parent0965813640dadd233e0c35e1f5b48c05397b61f0 (diff)
downloadexternal_wpa_supplicant_8_ti-a0d0c560c3ded74ccb6f994d7608234f1bc24f18.zip
external_wpa_supplicant_8_ti-a0d0c560c3ded74ccb6f994d7608234f1bc24f18.tar.gz
external_wpa_supplicant_8_ti-a0d0c560c3ded74ccb6f994d7608234f1bc24f18.tar.bz2
Add dh5_init_fixed() to allow fixed DH parameters to be used
This allows pre-configured private and public key to be used when initializing DH for group 5. Signed-hostap: Jouni Malinen <j@w1.fi>
Diffstat (limited to 'src/crypto/dh_group5.c')
-rw-r--r--src/crypto/dh_group5.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/crypto/dh_group5.c b/src/crypto/dh_group5.c
index 9a94ca5..ccdbfc8 100644
--- a/src/crypto/dh_group5.c
+++ b/src/crypto/dh_group5.c
@@ -1,6 +1,6 @@
/*
* Diffie-Hellman group 5 operations
- * Copyright (c) 2009, Jouni Malinen <j@w1.fi>
+ * Copyright (c) 2009, 2012, Jouni Malinen <j@w1.fi>
*
* This software may be distributed under the terms of the BSD license.
* See README for more details.
@@ -22,6 +22,12 @@ void * dh5_init(struct wpabuf **priv, struct wpabuf **publ)
}
+void * dh5_init_fixed(const struct wpabuf *priv, const struct wpabuf *publ)
+{
+ return (void *) 1;
+}
+
+
struct wpabuf * dh5_derive_shared(void *ctx, const struct wpabuf *peer_public,
const struct wpabuf *own_private)
{