blob: 10d0c7edd3a7ebe79d59e5b90b87c1e00cf6e606 [file] [log] [blame]
// Copyright 2017 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 "content/browser/webauth/public_key.h"
#include <utility>
#include "base/macros.h"
namespace content {
PublicKey::PublicKey(std::string algorithm)
: algorithm_(std::move(algorithm)) {}
PublicKey::~PublicKey() {}
} // namespace content