HomeSort by relevance Sort by last modified time
    Searched full:cryptohome (Results 26 - 50 of 90) sorted by null

12 3 4

  /external/autotest/client/site_tests/platform_CryptohomeMultiple/
control 14 Performs functional tests for cryptohome multi-mount.
platform_CryptohomeMultiple.py 7 from autotest_lib.client.cros import cryptohome
15 Tests mounting a single not-already-existing cryptohome. Ensures that
26 self.cryptohome_proxy = cryptohome.CryptohomeProxy()
  /external/autotest/client/site_tests/platform_CryptohomeSyncStress/
control 7 PURPOSE = "Login in and verify that cryptohome is mounted successfully."
  /external/autotest/client/site_tests/platform_CryptohomeMigrateChapsTokenClient/
platform_CryptohomeMigrateChapsTokenClient.py 7 from autotest_lib.client.cros import cryptohome, pkcs11
20 self._cryptohome_proxy = cryptohome.CryptohomeProxy()
38 raise error.TestFail('Unable to remount users cryptohome')
  /external/autotest/client/site_tests/login_GuestAndActualSession/
login_GuestAndActualSession.py 12 from autotest_lib.client.cros import constants, cros_ui, cryptohome, ownership
37 self._cryptohome_proxy = cryptohome.CryptohomeProxy(bus_loop)
44 cryptohome.mount_guest()
  /external/autotest/client/site_tests/login_CryptohomeIncognito/
control 16 This test will fail if guest cryptohome is not mounted when logged in as guest,
  /external/autotest/client/site_tests/login_CryptohomeOwnerQuery/
control 15 This test verifies that the owner user query in cryptohome reports the proper
  /external/cros/system_api/dbus/cryptohome/
key.proto 5 // Provides wire-type for cryptohome Key objects. It does not
6 // represent the entirety of the bookkeeping data needed by Cryptohome.
14 package cryptohome;
40 // Allows the key to mount the cryptohome.
64 // The KeyType should specify the handling needed by Cryptohome
dbus-constants.h 8 namespace cryptohome { namespace
10 const char kCryptohomeServicePath[] = "/org/chromium/Cryptohome";
11 const char kCryptohomeServiceName[] = "org.chromium.Cryptohome";
135 } // namespace cryptohome
  /external/autotest/client/site_tests/security_ProfilePermissions/
security_ProfilePermissions.py 13 from autotest_lib.client.cros import constants, cryptohome
52 else cryptohome.GUEST_USER_NAME)
54 """Check permissions within cryptohome for anything too permissive.
61 user_mountpt = cryptohome.user_path(username)
115 if cryptohome.is_vault_mounted(
120 vaultpath = cryptohome.get_mounted_vault_devices(username)[0]
132 'Bad permissions found on cryptohome files')
  /external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome/
cros_test_case.py 66 """Returns True if cryptohome is mounted. as determined by the cmd
67 cryptohome --action=is_mounted"""
69 ['/usr/sbin/cryptohome', '--action=is_mounted'])[0].strip() == 'true'
  /external/autotest/client/site_tests/login_MultipleSessions/
login_MultipleSessions.py 11 from autotest_lib.client.cros import cros_ui, cryptohome, ownership
36 self._cryptohome_proxy = cryptohome.CryptohomeProxy(self._bus_loop)
56 # Destroy the owner's cryptohome and start sessions again in a
73 Make a fresh cryptohome for user, and then start a session for him
  /external/autotest/client/site_tests/login_OwnershipRetaken/
control 16 Ensure that ownership is re-taken upon loss of owner's cryptohome.
login_OwnershipRetaken.py 11 from autotest_lib.client.cros import constants, cros_ui, cryptohome, ownership
15 """"Ensure that ownership is re-taken upon loss of owner's cryptohome."""
33 self._cryptohome_proxy = cryptohome.CryptohomeProxy(bus_loop)
  /external/autotest/client/site_tests/platform_CryptohomeMigrateKey/
control 18 This test checks that cryptohome can migrate cryptohomes from old keys to new
  /external/autotest/client/site_tests/platform_CryptohomeTPMReOwn/
control 7 PURPOSE = "Verify that cryptohome re-creates the user's vault directory when the TPM is re-owned."
  /external/vboot_reference/scripts/image_signing/sample-test-configs/
ensure_no_nonrelease_files.config 17 # any cryptohome-related weaknesses e.g. everyone using the same salt.
  /external/autotest/client/site_tests/login_SameSessionTwice/
login_SameSessionTwice.py 11 from autotest_lib.client.cros import cros_ui, cryptohome
30 cryptohome.CryptohomeProxy(bus_loop).ensure_clean_cryptohome_for(user)
  /external/autotest/client/cros/
cryptohome.py 13 CRYPTOHOME_CMD = '/usr/sbin/cryptohome'
27 return utils.system_output(['cryptohome', '--action=obfuscate_user',
33 return utils.system_output(['cryptohome-path', 'user', user])
38 return utils.system_output(['cryptohome-path', 'system', user])
42 """Ensure a fresh cryptohome exists for user.
44 @param user: user who needs a shiny new cryptohome.
185 raise ChromiumOSError('Cryptohome could not remove the user\'s vault.')
210 raise ChromiumOSError('Cryptohome vault not found after mount.')
216 raise ChromiumOSError('Cryptohome created a vault but did not mount.')
225 raise ChromiumOSError('Cryptohome did not mount tmpfs.'
    [all...]
login.py 7 import constants, cros_logging, cros_ui, cryptohome
109 """Wait until cryptohome is mounted.
111 @param user: the user whose cryptohome the caller wants to wait for.
114 @raise: TimeoutError: cryptohome wasn't mounted before timeout
117 condition=lambda: cryptohome.is_vault_mounted(user),
118 timeout_msg='Timed out waiting for cryptohome to be mounted',
tpm_store.py 9 from autotest_lib.client.cros import cryptohome
19 CRYPTOHOME_COMMAND = '/usr/sbin/cryptohome'
56 if cryptohome.is_tpm_lockout_in_effect():
  /system/connectivity/shill/bin/
shill_login_user 26 # - "New style" cryptohome store -- we create a link to it in
30 # exist, we validate this profile and move it to the cryptohome.
35 # and copy to the cryptohome profile.
59 profile_base=$(cryptohome-path system $user)
62 "User cryptohome dir $profile_base does not exist"
69 user_base=$(cryptohome-path user $user)
104 "Failed to create shill user cryptohome link $profile_link_dir"
  /external/libbrillo/brillo/
cryptohome.cc 5 #include "brillo/cryptohome.h"
22 namespace cryptohome { namespace in namespace:brillo
141 } // namespace cryptohome
  /external/autotest/client/site_tests/enterprise_PowerManagement/
enterprise_PowerManagement.py 9 from autotest_lib.client.cros import cryptohome
95 lambda: not cryptohome.is_vault_mounted(user=self.USERNAME,
  /external/autotest/client/site_tests/login_GaiaLogin/
login_GaiaLogin.py 7 from autotest_lib.client.cros import cryptohome
31 if not cryptohome.is_vault_mounted(user=self._USERNAME):

Completed in 379 milliseconds

12 3 4