00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef DH_GROUP5_H
00016 #define DH_GROUP5_H
00017
00018 void * dh5_init(struct wpabuf **priv, struct wpabuf **publ);
00019 struct wpabuf * dh5_derive_shared(void *ctx, const struct wpabuf *peer_public,
00020 const struct wpabuf *own_private);
00021 void dh5_free(void *ctx);
00022
00023 #endif