root/net/cert/jwk_serializer_openssl.cc

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. ConvertSpkiFromDerToJwk

// Copyright 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 "net/cert/jwk_serializer.h"

#include "base/logging.h"

namespace net {

namespace JwkSerializer {

bool ConvertSpkiFromDerToJwk(
    const base::StringPiece& spki_der,
    base::DictionaryValue* public_key_jwk) {
  // TODO(juanlang): implement
  NOTIMPLEMENTED();
  return false;
}

}  // namespace JwkSerializer

}  // namespace net

/* [<][>][^][v][top][bottom][index][help] */