HomeSort by relevance Sort by last modified time
    Searched full:passphrase (Results 126 - 150 of 279) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/openssh/
ssh-agent.0 50 the identity has a passphrase, ssh-add(1) asks for the passphrase on the
ssh-add.c 177 /* At first, try empty passphrase */
185 /* clear passphrase since it did not work */
187 snprintf(msg, sizeof msg, "Enter passphrase for %.200s: ",
203 "Bad passphrase, try again for %.200s: ", comment);
269 pin = read_passphrase("Enter passphrase for PKCS#11: ", RP_ALLOW_STDIN);
ssh-agent.1 121 If the identity has a passphrase,
123 asks for the passphrase on the terminal if it has one or from a small X11
  /external/chromium/chrome/browser/sync/
sync_setup_wizard_unittest.cc 65 virtual void SetPassphrase(const std::string& passphrase,
68 passphrase_ = passphrase;
346 value.Append(new StringValue("{\"passphrase\":\"myPassphrase\","
359 "\"passphrase\":\"myPassphrase\"}"));
365 "\"passphrase\":\"myPassphrase\"}"));
  /external/chromium_org/chrome/browser/sync/
about_sync_util.cc 203 "Explicit Passphrase");
205 "Passphrase Required");
215 "Passphrase Type");
217 "Passphrase Time");
323 GetTimeStr(service->GetExplicitPassphraseTime(), "No Passphrase Time"));
profile_sync_service_harness.h 136 // Blocks the caller until |service_| indicates that a passphrase is required.
139 // Blocks the caller until |service_| indicates that the passphrase set by
226 // The sync client is waiting for a passphrase to be required by the
230 // The sync client is waiting for its passphrase to be accepted by the
262 // The sync client needs a passphrase in order to decrypt data.
sync_ui_util_unittest.cc 76 // passphrase is required.
94 // passphrase is required and not for auth errors.
117 // Make sure we are still displaying the passphrase error badge (don't show
  /external/chromium_org/chrome/browser/chromeos/cros/
network_library_impl_stub.cc 446 std::string passphrase; local
450 passphrase = wifi->passphrase();
454 passphrase = wimax->eap_passphrase();
456 if (!passphrase.empty()) {
457 if (passphrase.find("bad") == 0) {
460 } else if (passphrase.find("error") == 0) {
network_library.h 554 bool save_credentials_; // save passphrase and EAP credentials to disk.
629 // Returns true if a PSK passphrase is required to connect.
631 // Returns true if a user passphrase is required to connect.
934 const std::string& passphrase() const { return passphrase_; } function in class:chromeos::WifiNetwork
    [all...]
  /external/chromium/chrome/browser/chromeos/cros/
network_library.h 671 const std::string& passphrase() const { return passphrase_; } function in class:chromeos::WifiNetwork
693 void SetPassphrase(const std::string& passphrase);
705 void SetEAPPassphrase(const std::string& passphrase);
715 // Return true if a passphrase or other input is required to connect.
731 void set_passphrase(const std::string& passphrase) {
732 passphrase_ = passphrase;
758 // Tells flimflam to save passphrase and EAP credentials to disk.
762 // Passphrase set by user (stored for UI).
    [all...]
  /external/chromium/chrome/browser/resources/
network_menu.js 34 function sendConnect(index, passphrase, identity, auto_connect) {
38 passphrase,
147 sendConnect(index, this.attrs.passphrase, '', this.attrs.auto_connect);
  /external/chromium_org/chrome/browser/resources/chromeos/
network_menu.js 34 function sendConnect(index, passphrase, identity, auto_connect) {
38 passphrase,
147 sendConnect(index, this.attrs.passphrase, '', this.attrs.auto_connect);
  /external/wpa_supplicant_8/wpa_supplicant/
p2p_supplicant.c 573 if (ssid->passphrase && !s->passphrase)
575 else if (ssid->passphrase && s->passphrase &&
576 os_strcmp(ssid->passphrase, s->passphrase) != 0)
609 if (ssid->passphrase) {
610 os_free(s->passphrase);
611 s->passphrase = os_strdup(ssid->passphrase);
    [all...]
wps_supplicant.c 263 if (ssid->passphrase && new_ssid->passphrase) {
264 if (os_strlen(ssid->passphrase) !=
265 os_strlen(new_ssid->passphrase))
267 if (os_strcmp(ssid->passphrase, new_ssid->passphrase) !=
270 } else if (ssid->passphrase || new_ssid->passphrase)
494 os_free(ssid->passphrase);
495 ssid->passphrase = os_malloc(cred->key_len + 1)
    [all...]
  /external/chromium/chrome/browser/chromeos/options/
network_config_view.h 116 // Width of passphrase fields.
wifi_config_view.h 71 // Get the typed in passphrase.
  /external/chromium/chrome/browser/sync/glue/
data_type_manager.h 30 // external action must take place (i.e. passphrase).
  /external/chromium/crypto/
symmetric_key_mac.cc 112 params.Passphrase = StringToData(password);
  /external/chromium_org/chromeos/network/
network_configuration_handler_unittest.cc 515 std::string identity, passphrase; local
519 service_path, flimflam::kPassphraseProperty, &passphrase));
521 EXPECT_EQ(test_passphrase, passphrase);
541 service_path, flimflam::kIdentityProperty, &passphrase));
network_connection_handler.h 31 // 1. Determine whether or not sufficient information (e.g. passphrase) is
62 // The passphrase is missing or invalid.
  /external/chromium_org/chromeos/network/onc/
onc_utils.cc 56 scoped_ptr<base::DictionaryValue> Decrypt(const std::string& passphrase,
112 passphrase,
349 const std::string& passphrase,
370 toplevel_onc = Decrypt(passphrase, *toplevel_onc);
  /external/chromium_org/components/user_prefs/
pref_registry_syncable.h 39 // is prompted for a passphrase.
  /external/wpa_supplicant_8/src/ap/
ap_config.c 293 wpa_hexdump_ascii_key(MSG_DEBUG, "PSK (ASCII passphrase)",
299 wpa_hexdump_key(MSG_DEBUG, "PSK (from passphrase)",
312 "instead of passphrase");
315 "passphrase");
  /frameworks/base/wifi/java/android/net/wifi/p2p/
package.html 37 network name, and passphrase.</li>
  /external/chromium_org/chromeos/cryptohome/
cryptohome_library.cc 172 crypto::SymmetricKey* PassphraseToKey(const std::string& passphrase,
175 crypto::SymmetricKey::AES, passphrase, salt, 1000, 256);

Completed in 2230 milliseconds

1 2 3 4 56 7 8 91011>>