diff options
Diffstat (limited to 'base/crypto/pbkdf2_mac.cc')
-rw-r--r-- | base/crypto/pbkdf2_mac.cc | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/base/crypto/pbkdf2_mac.cc b/base/crypto/pbkdf2_mac.cc new file mode 100644 index 0000000..64e661e --- /dev/null +++ b/base/crypto/pbkdf2_mac.cc @@ -0,0 +1,17 @@ +// 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/pbkdf2.h" + +namespace base { + +SymmetricKey* DeriveKeyFromPassword(const std::string& password, + const std::string& salt, + unsigned int iterations, + unsigned int key_size) { + // TODO(albertb): Implement this on Mac. + return NULL; +} + +} // namespace base |