1 // Copyright 2014 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 "components/ownership/owner_key_util.h"
7 #include "crypto/rsa_private_key.h"
11 ///////////////////////////////////////////////////////////////////////////
14 PublicKey::PublicKey() {
17 PublicKey::~PublicKey() {
20 ///////////////////////////////////////////////////////////////////////////
23 PrivateKey::PrivateKey(crypto::RSAPrivateKey
* key
) : key_(key
) {
26 PrivateKey::~PrivateKey() {
29 } // namespace ownership