Searched refs:inc_y (Results 1 – 3 of 3) sorted by relevance
/external/wpa_supplicant_8/src/crypto/ |
D | crypto.h | 915 struct wpabuf * crypto_ecdh_get_pubkey(struct crypto_ecdh *ecdh, int inc_y); 916 struct wpabuf * crypto_ecdh_set_peerkey(struct crypto_ecdh *ecdh, int inc_y,
|
D | crypto_wolfssl.c | 1761 struct wpabuf * crypto_ecdh_get_pubkey(struct crypto_ecdh *ecdh, int inc_y) in crypto_ecdh_get_pubkey() argument 1767 buf = wpabuf_alloc(inc_y ? 2 * len : len); in crypto_ecdh_get_pubkey() 1776 if (inc_y) { in crypto_ecdh_get_pubkey() 1793 struct wpabuf * crypto_ecdh_set_peerkey(struct crypto_ecdh *ecdh, int inc_y, in crypto_ecdh_set_peerkey() argument 1801 size_t need_key_len = inc_y ? 2 * key_len : key_len; in crypto_ecdh_set_peerkey() 1808 wpabuf_put_u8(pubkey, inc_y ? ECC_POINT_UNCOMP : ECC_POINT_COMP_EVEN); in crypto_ecdh_set_peerkey()
|
D | crypto_openssl.c | 2016 struct wpabuf * crypto_ecdh_get_pubkey(struct crypto_ecdh *ecdh, int inc_y) in crypto_ecdh_get_pubkey() argument 2034 if (inc_y) { in crypto_ecdh_get_pubkey() 2039 buf = wpabuf_alloc(inc_y ? 2 * len : len); in crypto_ecdh_get_pubkey() 2056 if (inc_y) { in crypto_ecdh_get_pubkey() 2076 struct wpabuf * crypto_ecdh_set_peerkey(struct crypto_ecdh *ecdh, int inc_y, in crypto_ecdh_set_peerkey() argument 2087 x = BN_bin2bn(key, inc_y ? len / 2 : len, NULL); in crypto_ecdh_set_peerkey() 2092 if (inc_y) { in crypto_ecdh_set_peerkey()
|