HomeSort by relevance Sort by last modified time
    Searched defs:otp (Results 1 - 7 of 7) sorted by null

  /external/wpa_supplicant_8/src/eap_peer/
eap_otp.c 2 * EAP peer method: EAP-OTP (RFC 3748)
35 int otp; local
42 wpa_hexdump_ascii(MSG_MSGDUMP, "EAP-OTP: Request message",
47 otp = 1;
50 otp = 0;
54 wpa_printf(MSG_INFO, "EAP-OTP: Password not configured");
71 wpa_hexdump_ascii_key(MSG_MSGDUMP, "EAP-OTP: Response",
74 if (otp) {
75 wpa_printf(MSG_DEBUG, "EAP-OTP: Forgetting used password");
88 EAP_VENDOR_IETF, EAP_TYPE_OTP, "OTP");
    [all...]
eap_gtc.c 52 int otp; local
79 otp = 1;
82 otp = 0;
118 if (otp) {
eap_config.h 573 * otp - One-time-password
576 * internally when OTP is entered through the control interface.
578 u8 *otp; member in struct:eap_peer_config
581 * otp_len - Length of the otp field
631 * pending_req_otp - Whether there is a pending OTP request
640 * pending_req_otp_len - Length of the pending OTP request
  /external/boringssl/src/crypto/rc4/
rc4.c 93 RC4_CHUNK ichunk, otp; local
130 otp = RC4_STEP << BESHFT(0);
131 otp |= RC4_STEP << BESHFT(1);
132 otp |= RC4_STEP << BESHFT(2);
133 otp |= RC4_STEP << BESHFT(3);
135 otp |= RC4_STEP << BESHFT(4);
136 otp |= RC4_STEP << BESHFT(5);
137 otp |= RC4_STEP << BESHFT(6);
138 otp |= RC4_STEP << BESHFT(7);
140 *(RC4_CHUNK *)out = otp ^ ichunk
    [all...]
  /external/tcpdump/
print-llc.c 383 const struct oui_tok *otp; local
385 for (otp = &oui_to_tok[0]; otp->tok != NULL; otp++) {
386 if (otp->oui == orgcode) {
387 tok = otp->tok;
  /system/connectivity/shill/vpn/
openvpn_management_server.cc 290 string otp = driver_->args()->LookupString(kOpenVPNOTPProperty, ""); local
292 if (user.empty() || (token.empty() && (password.empty() || otp.empty()))) {
297 << (otp.empty() ? " no-otp" : "");
309 string b64_otp(brillo::data_encoding::Base64Encode(otp));
313 // Don't reuse OTP.
openvpn_driver_unittest.cc 88 otp(otp_in),
95 string otp; member in struct:shill::AuthenticationExpectations
429 if (!GetParam().otp.empty()) {
430 store.SetStringProperty(kOpenVPNOTPProperty, GetParam().otp, &unused_error);
466 "", "client_cert", "user", "otp", "",
473 "", "client_cert", "user", "otp", "token",
481 "ca_cert", "client_cert", "user", "otp", "token",
    [all...]

Completed in 629 milliseconds