HomeSort by relevance Sort by last modified time
    Searched refs:dh_ctx (Results 1 - 6 of 6) sorted by null

  /external/wpa_supplicant_8/src/wps/
wps_attr_build.c 30 wps->dh_ctx = wps->wps->dh_ctx;
31 wps->wps->dh_ctx = NULL;
39 wps->dh_ctx = dh5_init_fixed(wps->dh_privkey, pubkey);
44 dh5_free(wps->dh_ctx);
45 wps->dh_ctx = dh5_init(&wps->dh_privkey, &pubkey);
48 if (wps->dh_ctx == NULL || wps->dh_privkey == NULL || pubkey == NULL) {
wps_common.c 80 dh_shared = dh5_derive_shared(wps->dh_ctx, pubkey, wps->dh_privkey);
81 dh5_free(wps->dh_ctx);
82 wps->dh_ctx = NULL;
754 void *dh_ctx; local
768 dh_ctx = dh5_init(&priv, &pub);
769 if (dh_ctx == NULL) {
773 dh5_free(dh_ctx);
wps_i.h 109 void *dh_ctx; member in struct:wps_data
wps.c 161 dh5_free(data->dh_ctx);
wps.h 630 * dh_ctx - Context data for Diffie-Hellman operation
632 void *dh_ctx; member in struct:wps_context
  /external/wpa_supplicant_8/wpa_supplicant/
wps_supplicant.c 973 dh5_free(wps->dh_ctx);
974 wps->dh_ctx = dh5_init(&wps->dh_privkey, &wps->dh_pubkey);
976 if (wps->dh_ctx == NULL || wps->dh_pubkey == NULL) {
    [all...]

Completed in 64 milliseconds