summaryrefslogtreecommitdiffstats
path: root/base/crypto/pbkdf2.h
diff options
context:
space:
mode:
Diffstat (limited to 'base/crypto/pbkdf2.h')
-rw-r--r--base/crypto/pbkdf2.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/base/crypto/pbkdf2.h b/base/crypto/pbkdf2.h
deleted file mode 100644
index e5c0821..0000000
--- a/base/crypto/pbkdf2.h
+++ /dev/null
@@ -1,22 +0,0 @@
-// 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.
-
-#ifndef BASE_CRYPTO_PBKDF2_H_
-#define BASE_CRYPTO_PBKDF2_H_
-
-#include <string>
-
-#include "base/crypto/symmetric_key.h"
-
-namespace base {
-
-// Derives a key from the supplied password and salt using PBKDF2.
-SymmetricKey* DeriveKeyFromPassword(const std::string& password,
- const std::string& salt,
- unsigned int iterations,
- unsigned int key_size);
-
-} // namespace base
-
-#endif // BASE_CRYPTO_PBKDF2_H_