Searched refs:publ (Results 1 - 4 of 4) sorted by path

/freebsd-11-stable/contrib/wpa/src/crypto/
H A Ddh_group5.c16 void * dh5_init(struct wpabuf **priv, struct wpabuf **publ) argument
18 wpabuf_free(*publ);
19 *publ = dh_init(dh_groups_get(5), priv);
20 if (*publ == NULL)
26 void * dh5_init_fixed(const struct wpabuf *priv, const struct wpabuf *publ) argument
H A Ddh_group5.h12 void * dh5_init(struct wpabuf **priv, struct wpabuf **publ);
13 void * dh5_init_fixed(const struct wpabuf *priv, const struct wpabuf *publ);
H A Dcrypto_openssl.c747 void * dh5_init(struct wpabuf **priv, struct wpabuf **publ) argument
757 wpabuf_free(*publ);
758 *publ = NULL;
792 *publ = pubkey;
808 wpabuf_free(*publ);
809 *publ = NULL;
842 *publ = pubkey;
857 void * dh5_init_fixed(const struct wpabuf *priv, const struct wpabuf *publ) argument
880 dh->pub_key = BN_bin2bn(wpabuf_head(publ), wpabuf_len(publ), NUL
[all...]
H A Dcrypto_wolfssl.c640 void * dh5_init(struct wpabuf **priv, struct wpabuf **publ) argument
650 wpabuf_free(*publ);
651 *publ = NULL;
682 *publ = pubkey;
698 void * dh5_init_fixed(const struct wpabuf *priv, const struct wpabuf *publ) argument
724 if (secret_sz != wpabuf_len(publ) ||
725 os_memcmp(secret, wpabuf_head(publ), secret_sz) != 0)

Completed in 143 milliseconds