mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-26 17:28:29 -05:00
0f3d578efc
Remove the GPL notification text from the files that were initially contributed by myself. Signed-hostap: Jouni Malinen <j@w1.fi>
18 lines
473 B
C
18 lines
473 B
C
/*
|
|
* Diffie-Hellman group 5 operations
|
|
* Copyright (c) 2009, Jouni Malinen <j@w1.fi>
|
|
*
|
|
* This software may be distributed under the terms of the BSD license.
|
|
* See README for more details.
|
|
*/
|
|
|
|
#ifndef DH_GROUP5_H
|
|
#define DH_GROUP5_H
|
|
|
|
void * dh5_init(struct wpabuf **priv, struct wpabuf **publ);
|
|
struct wpabuf * dh5_derive_shared(void *ctx, const struct wpabuf *peer_public,
|
|
const struct wpabuf *own_private);
|
|
void dh5_free(void *ctx);
|
|
|
|
#endif /* DH_GROUP5_H */
|