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

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 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
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