OLD | NEW |
(Empty) | |
| 1 |
| 2 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 3 // Use of this source code is governed by a BSD-style license that can be |
| 4 // found in the LICENSE file. |
| 5 |
| 6 #include "google_apis/cup/client_update_protocol.h" |
| 7 |
| 8 #include "base/logging.h" |
| 9 |
| 10 ClientUpdateProtocol::~ClientUpdateProtocol() {} |
| 11 |
| 12 bool ClientUpdateProtocol::LoadPublicKey(const base::StringPiece& public_key) { |
| 13 NOTIMPLEMENTED(); |
| 14 return false; |
| 15 } |
| 16 |
| 17 size_t ClientUpdateProtocol::PublicKeyLength() { |
| 18 NOTIMPLEMENTED(); |
| 19 return 0; |
| 20 } |
| 21 |
| 22 bool ClientUpdateProtocol::EncryptKeySource( |
| 23 const std::vector<uint8>& key_source) { |
| 24 NOTIMPLEMENTED(); |
| 25 return false; |
| 26 } |
| 27 |
| 28 |
OLD | NEW |