/external/chromium_org/components/os_crypt/ |
os_crypt_posix.cc | 44 scoped_ptr<crypto::SymmetricKey> encryption_key( 50 DCHECK(encryption_key.get()); 52 return encryption_key.release(); 84 scoped_ptr<crypto::SymmetricKey> encryption_key(GetEncryptionKey()); 85 if (!encryption_key.get()) 90 if (!encryptor.Init(encryption_key.get(), crypto::Encryptor::CBC, iv)) 126 scoped_ptr<crypto::SymmetricKey> encryption_key(GetEncryptionKey()); 127 if (!encryption_key.get()) 132 if (!encryptor.Init(encryption_key.get(), crypto::Encryptor::CBC, iv))
|
os_crypt_mac.mm | 113 crypto::SymmetricKey* encryption_key = GetEncryptionKey(); 114 if (!encryption_key) 119 if (!encryptor.Init(encryption_key, crypto::Encryptor::CBC, iv)) 151 crypto::SymmetricKey* encryption_key = GetEncryptionKey(); 152 if (!encryption_key) 157 if (!encryptor.Init(encryption_key, crypto::Encryptor::CBC, iv))
|
/external/chromium_org/chrome/browser/chromeos/login/supervised/ |
supervised_user_creation_controller_new.cc | 121 const std::string& encryption_key, 138 creation_context_->encryption_key = encryption_key; 190 &creation_context_->encryption_key); 273 std::string encryption_key; local 274 base::Base64Decode(creation_context_->encryption_key, &encryption_key); 278 encryption_key)); 326 info.password_encryption_key = creation_context_->encryption_key;
|
supervised_user_creation_controller.h | 80 // |encryption_key|/|signature_key| for cryptohome. 86 const std::string& encryption_key,
|
supervised_user_creation_controller_new.h | 74 // |encryption_key|/|signature_key| for cryptohome. 80 const std::string& encryption_key, 130 std::string encryption_key; // 256 bit HMAC key member in struct:chromeos::SupervisedUserCreationControllerNew::UserCreationContext
|
supervised_user_password_browsertest.cc | 146 managed_user_proto.set_password_encryption_key("encryption_key"); 236 managed_user_proto.set_password_encryption_key("encryption_key");
|
supervised_user_creation_screen.cc | 251 std::string encryption_key; local 260 &encryption_key); 294 encryption_key,
|
/external/chromium_org/sync/util/ |
nigori_unittest.cc | 144 std::string encryption_key; local 146 EXPECT_TRUE(nigori1.ExportKeys(&user_key, &encryption_key, &mac_key)); 149 EXPECT_TRUE(nigori2.InitByImport(user_key, encryption_key, mac_key));
|
nigori.h | 45 const std::string& encryption_key, 64 std::string* encryption_key,
|
nigori.cc | 105 const std::string& encryption_key, 111 encryption_key)); 239 std::string* encryption_key, 242 DCHECK(encryption_key); 246 encryption_key_->GetRawKey(encryption_key) &&
|
cryptographer.cc | 36 std::string user_key, encryption_key, mac_key; local 37 it->second->ExportKeys(&user_key, &encryption_key, &mac_key); 39 nigori_copy->InitByImport(user_key, encryption_key, mac_key); 314 key.encryption_key(), 372 if (!nigori->InitByImport(key.user_key(), key.encryption_key(),
|
/external/chromium_org/chrome/browser/supervised_user/ |
supervised_user_sync_service.h | 74 const std::string& encryption_key, 80 const std::string& encryption_key, 137 const std::string& encryption_key, 144 const std::string& encryption_key,
|
supervised_user_sync_service.cc | 210 const std::string& encryption_key, 216 result->SetString(kPasswordEncryptionKey, encryption_key); 236 const std::string& encryption_key, 242 encryption_key, 252 const std::string& encryption_key, 258 encryption_key, 268 const std::string& encryption_key, 274 name, master_key, signature_key, encryption_key, avatar_index);
|
/external/chromium_org/chrome/browser/supervised_user/chromeos/ |
manager_password_service.cc | 111 std::string encryption_key; local 128 &encryption_key)) { 170 encryption_key));
|
/external/chromium_org/sync/protocol/ |
nigori_specifics.proto | 22 optional bytes encryption_key = 3;
|
/external/chromium_org/sync/internal_api/ |
sync_encryption_handler_impl_unittest.cc | 65 BuildEncryptionKeyProto(std::string encryption_key) { 67 keys.Add()->assign(encryption_key); [all...] |
/external/chromium_org/sync/engine/ |
syncer_unittest.cc | 331 mock_server_->SetKeystoreKey("encryption_key"); [all...] |