1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "components/webdata/encryptor/encryptor_password_mac.h"
7 #import <Security/Security.h>
9 #include "base/base64.h"
10 #include "base/mac/mac_logging.h"
11 #include "base/rand_util.h"
12 #include "crypto/apple_keychain.h"
14 using crypto::AppleKeychain;
18 // Generates a random password and adds it to the Keychain. The added password
19 // is returned from the function. If an error occurs, an empty password is
21 std::string AddRandomPasswordToKeychain(const AppleKeychain& keychain,
22 const std::string& service_name,
23 const std::string& account_name) {
24 // Generate a password with 128 bits of randomness.
25 const int kBytes = 128 / 8;
27 base::Base64Encode(base::RandBytesAsString(kBytes), &password);
29 const_cast<void*>(static_cast<const void*>(password.data()));
31 OSStatus error = keychain.AddGenericPassword(NULL,
41 OSSTATUS_DLOG(ERROR, error) << "Keychain add failed";
50 std::string EncryptorPassword::GetEncryptorPassword() const {
51 // These two strings ARE indeed user facing. But they are used to access
52 // the encryption keyword. So as to not lose encrypted data when system
53 // locale changes we DO NOT LOCALIZE.
54 const std::string service_name = "Chrome Safe Storage";
55 const std::string account_name = "Chrome";
57 UInt32 password_length = 0;
58 void* password_data = NULL;
59 OSStatus error = keychain_.FindGenericPassword(NULL,
69 std::string password =
70 std::string(static_cast<char*>(password_data), password_length);
71 keychain_.ItemFreeContent(NULL, password_data);
73 } else if (error == errSecItemNotFound) {
74 return AddRandomPasswordToKeychain(keychain_, service_name, account_name);
76 OSSTATUS_DLOG(ERROR, error) << "Keychain lookup failed";