2021-01-23 13:46:36 +08:00
|
|
|
/*
|
|
|
|
* StreamCipher.actor.cpp
|
|
|
|
*
|
|
|
|
* This source file is part of the FoundationDB open source project
|
|
|
|
*
|
|
|
|
* Copyright 2013-2020 Apple Inc. and the FoundationDB project authors
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "flow/StreamCipher.h"
|
|
|
|
#include "flow/UnitTest.h"
|
|
|
|
|
|
|
|
EncryptionStreamCipher::EncryptionStreamCipher(const StreamCipher::Key& key, const StreamCipher::IV& iv)
|
|
|
|
: ctx(EVP_CIPHER_CTX_new()) {
|
|
|
|
EVP_EncryptInit_ex(ctx, EVP_aes_128_gcm(), nullptr, nullptr, nullptr);
|
2021-01-23 13:47:36 +08:00
|
|
|
EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_SET_IVLEN, iv.size(), nullptr);
|
|
|
|
EVP_EncryptInit_ex(ctx, nullptr, nullptr, key.data(), iv.data());
|
2021-01-23 13:46:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
EncryptionStreamCipher::~EncryptionStreamCipher() {
|
|
|
|
EVP_CIPHER_CTX_free(ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
StringRef EncryptionStreamCipher::encrypt(unsigned char const* plaintext, int len, Arena& arena) {
|
|
|
|
auto ciphertext = new (arena) unsigned char[len + AES_BLOCK_SIZE];
|
|
|
|
int bytes{ 0 };
|
|
|
|
EVP_EncryptUpdate(ctx, ciphertext, &bytes, plaintext, len);
|
|
|
|
return StringRef(ciphertext, bytes);
|
|
|
|
}
|
|
|
|
|
|
|
|
StringRef EncryptionStreamCipher::finish(Arena& arena) {
|
|
|
|
auto ciphertext = new (arena) unsigned char[AES_BLOCK_SIZE];
|
|
|
|
int bytes{ 0 };
|
|
|
|
EVP_EncryptFinal_ex(ctx, ciphertext, &bytes);
|
|
|
|
return StringRef(ciphertext, bytes);
|
|
|
|
}
|
|
|
|
|
2021-01-23 13:47:36 +08:00
|
|
|
DecryptionStreamCipher::DecryptionStreamCipher(const StreamCipher::Key& key, const StreamCipher::IV& iv)
|
2021-01-23 13:46:36 +08:00
|
|
|
: ctx(EVP_CIPHER_CTX_new()) {
|
|
|
|
|
|
|
|
EVP_DecryptInit_ex(ctx, EVP_aes_128_gcm(), nullptr, nullptr, nullptr);
|
2021-01-23 13:47:36 +08:00
|
|
|
EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_SET_IVLEN, iv.size(), nullptr);
|
|
|
|
EVP_DecryptInit_ex(ctx, nullptr, nullptr, key.data(), iv.data());
|
2021-01-23 13:46:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
DecryptionStreamCipher::~DecryptionStreamCipher() {
|
|
|
|
EVP_CIPHER_CTX_free(ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
StringRef DecryptionStreamCipher::decrypt(unsigned char const* ciphertext, int len, Arena& arena) {
|
|
|
|
auto plaintext = new (arena) unsigned char[len];
|
|
|
|
int bytesDecrypted{ 0 };
|
|
|
|
EVP_DecryptUpdate(ctx, plaintext, &bytesDecrypted, ciphertext, len);
|
|
|
|
int finalBlockBytes{ 0 };
|
|
|
|
EVP_DecryptFinal_ex(ctx, plaintext + bytesDecrypted, &finalBlockBytes);
|
|
|
|
return StringRef(plaintext, bytesDecrypted + finalBlockBytes);
|
|
|
|
}
|
|
|
|
|
|
|
|
StringRef DecryptionStreamCipher::finish(Arena& arena) {
|
|
|
|
auto plaintext = new (arena) unsigned char[AES_BLOCK_SIZE];
|
|
|
|
int finalBlockBytes{ 0 };
|
|
|
|
EVP_DecryptFinal_ex(ctx, plaintext, &finalBlockBytes);
|
|
|
|
return StringRef(plaintext, finalBlockBytes);
|
|
|
|
}
|
|
|
|
|
|
|
|
void forceLinkStreamCipherTests() {}
|
|
|
|
|
|
|
|
TEST_CASE("flow/StreamCipher") {
|
2021-01-23 13:47:36 +08:00
|
|
|
StreamCipher::Key key;
|
2021-01-23 13:46:36 +08:00
|
|
|
generateRandomData(key.data(), key.size());
|
|
|
|
|
2021-01-23 13:47:36 +08:00
|
|
|
StreamCipher::IV iv;
|
2021-01-23 13:46:36 +08:00
|
|
|
generateRandomData(iv.data(), iv.size());
|
|
|
|
|
|
|
|
Arena arena;
|
|
|
|
std::vector<unsigned char> plaintext(deterministicRandom()->randomInt(0, 10001));
|
|
|
|
generateRandomData(&plaintext.front(), plaintext.size());
|
|
|
|
std::vector<unsigned char> ciphertext(plaintext.size() + AES_BLOCK_SIZE);
|
|
|
|
std::vector<unsigned char> decryptedtext(plaintext.size() + AES_BLOCK_SIZE);
|
|
|
|
|
|
|
|
TraceEvent("StreamCipherTestStart")
|
|
|
|
.detail("PlaintextSize", plaintext.size())
|
|
|
|
.detail("AESBlockSize", AES_BLOCK_SIZE);
|
|
|
|
{
|
2021-01-23 13:47:36 +08:00
|
|
|
EncryptionStreamCipher encryptor(key, iv);
|
2021-01-23 13:46:36 +08:00
|
|
|
int index = 0;
|
|
|
|
int encryptedOffset = 0;
|
|
|
|
while (index < plaintext.size()) {
|
|
|
|
const auto chunkSize = std::min<int>(deterministicRandom()->randomInt(1, 101), plaintext.size() - index);
|
|
|
|
const auto encrypted = encryptor.encrypt(&plaintext[index], chunkSize, arena);
|
|
|
|
TraceEvent("StreamCipherTestEcryptedChunk")
|
|
|
|
.detail("EncryptedSize", encrypted.size())
|
|
|
|
.detail("EncryptedOffset", encryptedOffset)
|
|
|
|
.detail("Index", index);
|
|
|
|
std::copy(encrypted.begin(), encrypted.end(), &ciphertext[encryptedOffset]);
|
|
|
|
encryptedOffset += encrypted.size();
|
|
|
|
index += chunkSize;
|
|
|
|
}
|
|
|
|
const auto encrypted = encryptor.finish(arena);
|
|
|
|
std::copy(encrypted.begin(), encrypted.end(), &ciphertext[encryptedOffset]);
|
|
|
|
ciphertext.resize(encryptedOffset + encrypted.size());
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2021-01-23 13:47:36 +08:00
|
|
|
DecryptionStreamCipher decryptor(key, iv);
|
2021-01-23 13:46:36 +08:00
|
|
|
int index = 0;
|
|
|
|
int decryptedOffset = 0;
|
|
|
|
while (index < plaintext.size()) {
|
|
|
|
const auto chunkSize = std::min<int>(deterministicRandom()->randomInt(1, 101), plaintext.size() - index);
|
|
|
|
const auto decrypted = decryptor.decrypt(&ciphertext[index], chunkSize, arena);
|
|
|
|
TraceEvent("StreamCipherTestDecryptedChunk")
|
|
|
|
.detail("DecryptedSize", decrypted.size())
|
|
|
|
.detail("DecryptedOffset", decryptedOffset)
|
|
|
|
.detail("Index", index);
|
|
|
|
std::copy(decrypted.begin(), decrypted.end(), &decryptedtext[decryptedOffset]);
|
|
|
|
decryptedOffset += decrypted.size();
|
|
|
|
index += chunkSize;
|
|
|
|
}
|
|
|
|
const auto decrypted = decryptor.finish(arena);
|
|
|
|
std::copy(decrypted.begin(), decrypted.end(), &decryptedtext[decryptedOffset]);
|
|
|
|
ASSERT(decryptedOffset + decrypted.size() == plaintext.size());
|
|
|
|
decryptedtext.resize(decryptedOffset + decrypted.size());
|
|
|
|
}
|
|
|
|
|
|
|
|
ASSERT(plaintext == decryptedtext);
|
|
|
|
return Void();
|
|
|
|
}
|