blob: 5a302aa718f88d69fb80d71f4f0a7373fbbdd674 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Copyright (c) 2010 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 "base/crypto/symmetric_key.h"
namespace base {
bool SymmetricKey::GetRawKey(std::string* raw_key) {
// TODO(albertb): Implement on Windows.
return false;
}
} // namespace base
|