Home | History | Annotate | Download | only in eap_peer

Lines Matching defs:crypto_binding

63 	enum { NO_BINDING, OPTIONAL_BINDING, REQUIRE_BINDING } crypto_binding;
106 if (os_strstr(phase1, "crypto_binding=0")) {
107 data->crypto_binding = NO_BINDING;
109 } else if (os_strstr(phase1, "crypto_binding=1")) {
110 data->crypto_binding = OPTIONAL_BINDING;
112 } else if (os_strstr(phase1, "crypto_binding=2")) {
113 data->crypto_binding = REQUIRE_BINDING;
144 data->crypto_binding = OPTIONAL_BINDING;
368 if (data->crypto_binding == NO_BINDING)
532 if (crypto_tlv && data->crypto_binding != NO_BINDING) {
544 } else if (!crypto_tlv && data->crypto_binding == REQUIRE_BINDING) {