Lines Matching refs:lx
1061 struct crypto_bignum *sum = NULL, *lx = NULL, *bR = NULL, *pR = NULL; in dpp_auth_derive_l_responder() local
1076 lx = crypto_bignum_init(); in dpp_auth_derive_l_responder()
1077 if (!q || !BI || !bR || !pR || !sum || !L || !lx || in dpp_auth_derive_l_responder()
1080 crypto_ec_point_x(ec, L, lx) || in dpp_auth_derive_l_responder()
1081 crypto_bignum_to_bin(lx, auth->Lx, sizeof(auth->Lx), in dpp_auth_derive_l_responder()
1089 crypto_bignum_deinit(lx, 1); in dpp_auth_derive_l_responder()
1104 struct crypto_bignum *lx = NULL, *bI = NULL; in dpp_auth_derive_l_initiator() local
1118 lx = crypto_bignum_init(); in dpp_auth_derive_l_initiator()
1119 if (!BR || !PR || !bI || !sum || !L || !lx || in dpp_auth_derive_l_initiator()
1122 crypto_ec_point_x(ec, L, lx) || in dpp_auth_derive_l_initiator()
1123 crypto_bignum_to_bin(lx, auth->Lx, sizeof(auth->Lx), in dpp_auth_derive_l_initiator()
1131 crypto_bignum_deinit(lx, 1); in dpp_auth_derive_l_initiator()