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

Side by Side Diff: crypto/cup_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 // 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
OLDNEW
« crypto/cup_nss.cc ('K') | « crypto/cup_nss.cc ('k') | crypto/cup_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698