Searched refs:publ (Results 1 – 5 of 5) sorted by relevance
/hostap-latest/src/crypto/ |
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
|
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);
|
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 …]
|
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()
|
D | crypto_mbedtls_alt.c | 1544 void *dh5_init(struct wpabuf **priv, struct wpabuf **publ) in dh5_init() argument 1560 wpabuf_free(*publ); in dh5_init() 1562 *publ = wpubl; in dh5_init() 1575 void *dh5_init_fixed(const struct wpabuf *priv, const struct wpabuf *publ) in dh5_init_fixed() argument
|