blob: 71a84be710dcf5dc31e08063bd5b8f2dbe21fa8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// 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"
#include "base/logging.h"
namespace base {
Encryptor::Encryptor() {
}
Encryptor::~Encryptor() {
}
bool Encryptor::Init(SymmetricKey* key, Mode mode, const std::string& iv) {
NOTIMPLEMENTED();
return false;
}
bool Encryptor::Encrypt(const std::string& plaintext, std::string* ciphertext) {
NOTIMPLEMENTED();
return false;
}
bool Encryptor::Decrypt(const std::string& ciphertext, std::string* plaintext) {
NOTIMPLEMENTED();
return false;
}
} // namespace base
|