diff options
Diffstat (limited to 'base/crypto/symmetric_key_win.cc')
-rw-r--r-- | base/crypto/symmetric_key_win.cc | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/base/crypto/symmetric_key_win.cc b/base/crypto/symmetric_key_win.cc index 5a302aa..014e1ba 100644 --- a/base/crypto/symmetric_key_win.cc +++ b/base/crypto/symmetric_key_win.cc @@ -6,8 +6,23 @@ namespace base { +// TODO(albertb): Implement on Windows. + +// static +SymmetricKey* SymmetricKey::GenerateRandomKey(Algorithm algorithm, unsigned int key_size) { + return NULL; +} + +// static +SymmetricKey* SymmetricKey::DeriveKeyFromPassword(Algorithm algorithm, + const std::string& password, + const std::string& salt, + size_t iterations, + size_t key_size) { + return NULL; +} + bool SymmetricKey::GetRawKey(std::string* raw_key) { - // TODO(albertb): Implement on Windows. return false; } |