Searched refs:publ (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/wpa/src/crypto/ |
H A D | dh_group5.c | 16 void * dh5_init(struct wpabuf **priv, struct wpabuf **publ) in dh5_init() argument 18 wpabuf_free(*publ); in dh5_init() 19 *publ = dh_init(dh_groups_get(5), priv); in dh5_init() 20 if (*publ == NULL) in dh5_init() 26 void * dh5_init_fixed(const struct wpabuf *priv, const struct wpabuf *publ) in dh5_init_fixed() argument
|
H A D | dh_group5.h | 12 void * dh5_init(struct wpabuf **priv, struct wpabuf **publ); 13 void * dh5_init_fixed(const struct wpabuf *priv, const struct wpabuf *publ);
|
H A D | crypto_openssl.c | 967 void * dh5_init(struct wpabuf **priv, struct wpabuf **publ) in dh5_init() argument 975 wpabuf_free(*publ); in dh5_init() 976 *publ = NULL; in dh5_init() 1010 *publ = pubkey; in dh5_init() 1028 wpabuf_free(*publ); in dh5_init() 1029 *publ = NULL; in dh5_init() 1063 *publ = pubkey; in dh5_init() 1077 wpabuf_free(*publ); in dh5_init() 1078 *publ = NULL; in dh5_init() 1111 *publ = pubkey; in dh5_init() [all …]
|
H A D | crypto_wolfssl.c | 930 void * dh5_init(struct wpabuf **priv, struct wpabuf **publ) in dh5_init() argument 940 wpabuf_free(*publ); in dh5_init() 941 *publ = NULL; in dh5_init() 973 *publ = pubkey; in dh5_init() 991 void * dh5_init_fixed(const struct wpabuf *priv, const struct wpabuf *publ) in dh5_init_fixed() argument 1017 if (secret_sz != wpabuf_len(publ) || in dh5_init_fixed() 1018 os_memcmp(secret, wpabuf_head(publ), secret_sz) != 0) in dh5_init_fixed()
|