Searched refs:inc_y (Results 1 – 3 of 3) sorted by relevance
/external/wpa_supplicant_8/src/crypto/ |
D | crypto.h | 888 struct wpabuf * crypto_ecdh_get_pubkey(struct crypto_ecdh *ecdh, int inc_y); 889 struct wpabuf * crypto_ecdh_set_peerkey(struct crypto_ecdh *ecdh, int inc_y,
|
D | crypto_wolfssl.c | 1708 struct wpabuf * crypto_ecdh_get_pubkey(struct crypto_ecdh *ecdh, int inc_y) in crypto_ecdh_get_pubkey() argument 1714 buf = wpabuf_alloc(inc_y ? 2 * len : len); in crypto_ecdh_get_pubkey() 1723 if (inc_y) { in crypto_ecdh_get_pubkey() 1740 struct wpabuf * crypto_ecdh_set_peerkey(struct crypto_ecdh *ecdh, int inc_y, in crypto_ecdh_set_peerkey() argument 1748 size_t need_key_len = inc_y ? 2 * key_len : key_len; in crypto_ecdh_set_peerkey() 1755 wpabuf_put_u8(pubkey, inc_y ? ECC_POINT_UNCOMP : ECC_POINT_COMP_EVEN); in crypto_ecdh_set_peerkey()
|
D | crypto_openssl.c | 1927 struct wpabuf * crypto_ecdh_get_pubkey(struct crypto_ecdh *ecdh, int inc_y) in crypto_ecdh_get_pubkey() argument 1945 if (inc_y) { in crypto_ecdh_get_pubkey() 1950 buf = wpabuf_alloc(inc_y ? 2 * len : len); in crypto_ecdh_get_pubkey() 1967 if (inc_y) { in crypto_ecdh_get_pubkey() 1987 struct wpabuf * crypto_ecdh_set_peerkey(struct crypto_ecdh *ecdh, int inc_y, in crypto_ecdh_set_peerkey() argument 1998 x = BN_bin2bn(key, inc_y ? len / 2 : len, NULL); in crypto_ecdh_set_peerkey() 2003 if (inc_y) { in crypto_ecdh_set_peerkey()
|