HomeSort by relevance Sort by last modified time
    Searched refs:passphrase (Results 51 - 75 of 92) sorted by null

1 23 4

  /external/chromium_org/chromeos/network/onc/
onc_utils.cc 58 scoped_ptr<base::DictionaryValue> Decrypt(const std::string& passphrase,
114 passphrase,
351 const std::string& passphrase,
374 toplevel_onc = Decrypt(passphrase, *toplevel_onc);
  /external/wpa_supplicant_8/wpa_supplicant/
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...]
config.c 288 os_free(ssid->passphrase);
289 ssid->passphrase = NULL;
313 wpa_printf(MSG_ERROR, "Line %d: Invalid passphrase "
318 wpa_hexdump_ascii_key(MSG_MSGDUMP, "PSK (ASCII passphrase)",
320 if (ssid->passphrase && os_strlen(ssid->passphrase) == len &&
321 os_memcmp(ssid->passphrase, value, len) == 0)
324 os_free(ssid->passphrase);
325 ssid->passphrase = dup_binstr(value, len);
326 if (ssid->passphrase == NULL
    [all...]
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...]
sme.c 91 if (ssid->passphrase == NULL) {
102 (u8 *) ssid->passphrase,
103 os_strlen(ssid->passphrase),
    [all...]
  /external/chromium/chrome/browser/sync/glue/
sync_backend_host.h 82 // The syncer requires a passphrase to decrypt sensitive
84 // setup by the user as well as anytime any the passphrase is
86 // |passphrase_required_for_decryption| is false, the passphrase is
90 // Called when the passphrase provided by the user is
92 // encrypted using the accepted passphrase.
150 // Called on |frontend_loop_| to asynchronously set the passphrase.
152 // setting a passphrase as opposed to implicitly (from the users' perspective)
154 // *not* override an explicit passphrase set previously.
155 void SetPassphrase(const std::string& passphrase, bool is_explicit);
241 // Whether or not the Nigori node is encrypted using an explicit passphrase
    [all...]
sync_backend_host.cc 219 void SyncBackendHost::SetPassphrase(const std::string& passphrase,
238 passphrase, is_explicit));
537 << "passphrase. Silently dropping.";
549 // When a passphrase fails, we just unset our waiting flag and trigger a
760 void SyncBackendHost::Core::DoSetPassphrase(const std::string& passphrase,
763 syncapi_->SetPassphrase(passphrase, is_explicit);
    [all...]
  /external/chromium_org/chrome/browser/chromeos/options/
wifi_config_view.cc 406 // If the network requires a passphrase, make sure it is the right length.
494 // Passphrase.
690 std::string passphrase = GetPassphrase(); local
691 if (!passphrase.empty()) {
720 const std::string passphrase = GetPassphrase(); local
721 if (!passphrase.empty()) {
723 shill::kPassphraseProperty, passphrase);
1192 std::string passphrase; local
    [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...]
network_library.cc 117 const char* kPassphraseProperty = "Passphrase";
320 const char* kErrorBadPassphrase = "bad-passphrase";
329 const char* kErrorPassphraseRequiredMsg = "Passphrase required";
1858 std::string passphrase; local
4323 std::string passphrase; member in struct:chromeos::NetworkLibraryImpl::ConnectData
    [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/chromium_org/chrome/browser/sync/
profile_sync_service.cc     [all...]
  /external/chromium_org/chromeos/dbus/
fake_shill_service_client.cc 540 std::string passphrase; local
542 shill::kPassphraseProperty, &passphrase);
543 if (passphrase == "failure") {
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-jsch.jar 
  /external/chromium/chrome/browser/chromeos/options/
wifi_config_view.cc 303 // If security is not none, also enforce passphrase is non empty.
313 // if the network requires a passphrase, make sure it is the right length.
559 // Passphrase
567 const std::string passphrase = GetPassphrase(); local
568 if (passphrase != wifi->passphrase())
569 wifi->SetPassphrase(passphrase);
726 // Passphrase input
737 // Disable passphrase input initially for other network.
880 // Passphrase
    [all...]
  /external/chromium/chrome/browser/sync/
profile_sync_service.cc 612 // First try supplying gaia password as the passphrase.
619 // If the above failed then try the custom passphrase the user might have
629 // We will skip the passphrase prompt and suppress the warning
630 // if the passphrase is needed for decryption but the user is
646 // Make sure the data types that depend on the passphrase are started at
651 // since we know we no longer require the passphrase.
    [all...]
profile_sync_service.h 246 // dialog for the error condition (relogin / enter passphrase).
422 // Returns true if a secondary passphrase is being used.
425 // Sets the Cryptographer's passphrase, or caches it until that is possible.
426 // This will check asynchronously whether the passphrase is valid and notify
430 // setting a passphrase as opposed to implicitly (from the users' perspective)
432 // *not* override an explicit passphrase set previously.
434 // up a new passphrase, and false if it's being set in response to a prompt
435 // for an existing passphrase.
436 virtual void SetPassphrase(const std::string& passphrase,
508 // backend, telling us that it is safe to send a passphrase down ASAP
    [all...]
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/openssh/contrib/suse/
openssh.spec 42 Summary: A passphrase dialog for OpenSSH and the X window System.
77 This package contains an X Window System passphrase dialog for OpenSSH.
  /external/openssh/
sshconnect2.c 1317 char prompt[300], *passphrase; local
    [all...]
  /external/wpa_supplicant_8/src/crypto/
crypto_openssl.c 684 int pbkdf2_sha1(const char *passphrase, const u8 *ssid, size_t ssid_len,
688 if (PKCS5_PBKDF2_HMAC_SHA1(passphrase, os_strlen(passphrase),
693 if (PKCS5_PBKDF2_HMAC_SHA1(passphrase, os_strlen(passphrase), ssid,
  /external/openssh/contrib/redhat/
openssh.spec 123 Summary: A passphrase dialog for OpenSSH and X.
129 Summary: A passphrase dialog for OpenSSH, X, and GNOME.
165 an X11 passphrase dialog for OpenSSH.
170 an X11 passphrase dialog for OpenSSH and the GNOME GUI desktop
  /external/chromium_org/chrome/browser/ui/webui/
sync_setup_handler_unittest.cc 74 const std::string& passphrase,
82 result.SetBoolean("usePassphrase", !passphrase.empty());
83 if (!passphrase.empty())
84 result.SetString("passphrase", passphrase);
655 // passphrase.
689 // passphrase.
708 // We should navigate back to the configure page since we need a passphrase.
724 // Act as if an encryption passphrase is required the first time, then never
790 // We should navigate back to the configure page since we need a passphrase
    [all...]
  /external/chromium/chrome/browser/ui/webui/options/chromeos/
internet_options_handler.cc 787 std::string passphrase; local
    [all...]

Completed in 1901 milliseconds

1 23 4