/external/chromium_org/chromeos/cryptohome/ |
system_salt_getter.cc | 30 if (!system_salt_.empty()) { 32 FROM_HERE, base::Bind(callback, system_salt_)); 62 system_salt_ = ConvertRawSaltToHexString(system_salt); 66 callback.Run(system_salt_);
|
system_salt_getter.h | 50 std::string system_salt_; member in class:chromeos::SystemSaltGetter
|
/external/chromium_org/chrome/browser/chromeos/settings/ |
token_encryptor.cc | 27 : system_salt_(system_salt) { 31 system_salt_key_.reset(PassphraseToKey(system_salt_, system_salt_)); 48 system_salt_, 63 system_salt_,
|
token_encryptor.h | 65 std::string system_salt_; member in class:chromeos::CryptohomeTokenEncryptor
|
/external/chromium/chrome/browser/chromeos/login/ |
google_authenticator.cc | 393 if (!system_salt_.empty()) 395 system_salt_ = CrosLibrary::Get()->GetCryptohomeLibrary()->GetSystemSalt(); 396 CHECK(!system_salt_.empty()); 397 CHECK_EQ(system_salt_.size() % 2, 0U); 463 unsigned int salt_len = system_salt_.size(); 465 if (GoogleAuthenticator::BinaryToHex(system_salt_,
|
google_authenticator.h | 74 system_salt_ = new_salt; 125 // Stores a hash of |password|, salted with the ascii of |system_salt_|. 195 chromeos::CryptohomeBlob system_salt_; member in class:chromeos::GoogleAuthenticator
|
parallel_authenticator.cc | 534 if (!system_salt_.empty()) 536 system_salt_ = CrosLibrary::Get()->GetCryptohomeLibrary()->GetSystemSalt(); 537 CHECK(!system_salt_.empty()); 538 CHECK_EQ(system_salt_.size() % 2, 0U); 604 unsigned int salt_len = system_salt_.size(); 606 if (ParallelAuthenticator::BinaryToHex(system_salt_,
|
parallel_authenticator.h | 216 // Stores a hash of |password|, salted with the ascii of |system_salt_|. 255 chromeos::CryptohomeBlob system_salt_; member in class:chromeos::ParallelAuthenticator
|
/external/chromium_org/chromeos/dbus/ |
fake_cryptohome_client.h | 174 system_salt_ = system_salt; 196 std::vector<uint8> system_salt_; member in class:chromeos::FakeCryptohomeClient
|
fake_cryptohome_client.cc | 20 system_salt_(GetStubSystemSalt()), 87 base::Bind(callback, DBUS_METHOD_CALL_SUCCESS, system_salt_));
|