diff options
Diffstat (limited to 'base/crypto/symmetric_key_win.cc')
-rw-r--r-- | base/crypto/symmetric_key_win.cc | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/base/crypto/symmetric_key_win.cc b/base/crypto/symmetric_key_win.cc new file mode 100644 index 0000000..5a302aa --- /dev/null +++ b/base/crypto/symmetric_key_win.cc @@ -0,0 +1,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 |