Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(42)

Side by Side Diff: chrome/browser/chromeos/login/mock_owner_key_util.cc

Issue 10828032: Add DeviceSettingsService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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.
4
5 #include "chrome/browser/chromeos/login/mock_owner_key_util.h"
6
7 #include "crypto/rsa_private_key.h"
8
9 namespace chromeos {
10
11 MockOwnerKeyUtil::MockOwnerKeyUtil() {}
12
13 MockOwnerKeyUtil::~MockOwnerKeyUtil() {}
14
15 bool MockOwnerKeyUtil::ImportPublicKey(std::vector<uint8>* output) {
16 *output = public_key_;
17 return !public_key_.empty();
18 }
19
20 crypto::RSAPrivateKey* MockOwnerKeyUtil::FindPrivateKey(
21 const std::vector<uint8>& key) {
22 return private_key_.get() ? private_key_->Copy() : NULL;
23 }
24
25 bool MockOwnerKeyUtil::IsPublicKeyPresent() {
26 return !public_key_.empty();
27 }
28
29 void MockOwnerKeyUtil::SetPublicKey(const std::vector<uint8>& key) {
30 public_key_ = key;
31 }
32
33 void MockOwnerKeyUtil::SetPublicKeyFromPrivateKey(crypto::RSAPrivateKey* key) {
34 key->ExportPublicKey(&public_key_);
35 }
36
37 void MockOwnerKeyUtil::SetPrivateKey(crypto::RSAPrivateKey* key) {
38 private_key_.reset(key->Copy());
39 private_key_->ExportPublicKey(&public_key_);
40 }
41
42 bool MockOwnerKeyUtil::ExportPublicKey(crypto::RSAPrivateKey* pair) {
43 return true;
44 }
45
46 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698