[webcrypto] exportKey() now returns dictionary when format='jwk' (CL 1 of 2).
[chromium-blink-merge.git] / google_apis / cup / client_update_protocol_openssl.cc
blob74f99ec145c4dafe82646068e1965677603ee5f5
1 // Copyright 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.
5 #include "google_apis/cup/client_update_protocol.h"
7 #include "base/logging.h"
9 ClientUpdateProtocol::~ClientUpdateProtocol() {}
11 bool ClientUpdateProtocol::LoadPublicKey(const base::StringPiece& public_key) {
12 NOTIMPLEMENTED();
13 return false;
16 size_t ClientUpdateProtocol::PublicKeyLength() {
17 NOTIMPLEMENTED();
18 return 0;
21 bool ClientUpdateProtocol::EncryptKeySource(
22 const std::vector<uint8>& key_source) {
23 NOTIMPLEMENTED();
24 return false;