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

Unified 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, 7 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 side-by-side diff with in-line comments
Download patch
Index: crypto/cup_openssl.cc
===================================================================
--- crypto/cup_openssl.cc (revision 0)
+++ crypto/cup_openssl.cc (revision 0)
@@ -0,0 +1,22 @@
+// Copyright (c) 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "crypto/cup.h"
+
+#include "base/logging.h"
+
+namespace crypto {
+
+size_t ClientUpdateProtocol::LoadPublicKey(const char* public_key) {
+ NOTIMPLEMENTED();
+ return 0;
+}
+
+bool ClientUpdateProtocol::EncryptSharedKey() {
+ NOTIMPLEMENTED();
+ return false;
+}
+
+} // namespace crypto
+
« 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