OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2013 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 "crypto/cup.h" |
| 6 |
| 7 #include "base/logging.h" |
| 8 |
| 9 using base::StringPiece; |
| 10 |
| 11 namespace crypto { |
| 12 |
| 13 size_t ClientUpdateProtocol::LoadPublicKey(const StringPiece& public_key) { |
| 14 NOTIMPLEMENTED(); |
| 15 return 0; |
| 16 } |
| 17 |
| 18 bool ClientUpdateProtocol::EncryptKeySource( |
| 19 const std::vector<uint8>& key_source) { |
| 20 NOTIMPLEMENTED(); |
| 21 return false; |
| 22 } |
| 23 |
| 24 } // namespace crypto |
| 25 |
OLD | NEW |