diff options
Diffstat (limited to 'base/crypto/encryptor_win.cc')
-rw-r--r-- | base/crypto/encryptor_win.cc | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/base/crypto/encryptor_win.cc b/base/crypto/encryptor_win.cc new file mode 100644 index 0000000..6411408 --- /dev/null +++ b/base/crypto/encryptor_win.cc @@ -0,0 +1,29 @@ +// 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/encryptor.h" + +namespace base { + +// TODO(albertb): Implement on Windows. + +Encryptor::Encryptor() { +} + +Encryptor::~Encryptor() { +} + +bool Encryptor::Init(SymmetricKey* key, Mode mode, const std::string& iv) { + return false; +} + +bool Encryptor::Encrypt(const std::string& plaintext, std::string* ciphertext) { + return false; +} + +bool Encryptor::Decrypt(const std::string& ciphertext, std::string* plaintext) { + return false; +} + +} // namespace base |