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

Side by Side Diff: google_apis/cup/client_update_protocol_openssl.cc

Issue 15793005: Per discussion, implement the Omaha Client Update Protocol (CUP) in src/crypto. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 6 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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698