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 namespace crypto { | |
10 | |
11 size_t ClientUpdateProtocol::LoadPublicKey(const char* public_key) { | |
12 NOTIMPLEMENTED(); | |
13 return 0; | |
14 } | |
15 | |
16 bool ClientUpdateProtocol::EncryptSharedKey() { | |
17 NOTIMPLEMENTED(); | |
18 return false; | |
19 } | |
20 | |
21 } // namespace crypto | |
22 | |
OLD | NEW |