diff options
author | albertb@chromium.org <albertb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-22 20:08:41 +0000 |
---|---|---|
committer | albertb@chromium.org <albertb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-22 20:08:41 +0000 |
commit | 41c78fa1896c5f849c2160ae5de84c232e2c3de9 (patch) | |
tree | dbfa2145004d5de028626fb674c479c888b6183d /base/crypto/symmetric_key_win.cc | |
parent | 7e563816b35dcc102eb69849295b5f6f9d048a63 (diff) | |
download | chromium_src-41c78fa1896c5f849c2160ae5de84c232e2c3de9.zip chromium_src-41c78fa1896c5f849c2160ae5de84c232e2c3de9.tar.gz chromium_src-41c78fa1896c5f849c2160ae5de84c232e2c3de9.tar.bz2 |
PBKDF2 implemetation using NSS.
BUG=none
TEST=unit test
Review URL: http://codereview.chromium.org/1024001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42247 0039d316-1c4b-4281-b951-d872f2087c98
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 |