Files
barrier/src/lib/io/CryptoMode.h
2014-11-11 13:52:03 +00:00

58 lines
1.9 KiB
C++

/*
* synergy -- mouse and keyboard sharing utility
* Copyright (C) 2013 Synergy Si Ltd.
*
* This package is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* found in the file COPYING that should have accompanied this file.
*
* This package is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
#include "io/ECryptoMode.h"
#include "io/CryptoMode_cryptopp.h"
#include "base/String.h"
//! Encapsulation of modes
/*!
Polymorphism is tricky in Crypto++, so we encapsulate all crypto modes
and switch based on an enum for ctor, dtor and all functions.
*/
class CryptoMode {
public:
CryptoMode(ECryptoMode mode, bool encryption = true);
~CryptoMode();
//! Encrypt or decrypt data
void processData(byte* out, const byte* in, size_t length);
//! Variable length key and initialization vector
void setKeyWithIv(const byte* key, size_t length, const byte* iv);
private:
typedef CryptoPP::OFB_Mode<CryptoPP::AES>::Encryption OfbModeEnc;
typedef CryptoPP::CFB_Mode<CryptoPP::AES>::Encryption CfbModeEnc;
typedef CryptoPP::CTR_Mode<CryptoPP::AES>::Encryption CtrModeEnc;
typedef CryptoPP::GCM<CryptoPP::AES>::Encryption GcmModeEnc;
typedef CryptoPP::OFB_Mode<CryptoPP::AES>::Decryption OfbModeDec;
typedef CryptoPP::CFB_Mode<CryptoPP::AES>::Decryption CfbModeDec;
typedef CryptoPP::CTR_Mode<CryptoPP::AES>::Decryption CtrModeDec;
typedef CryptoPP::GCM<CryptoPP::AES>::Decryption GcmModeDec;
static ECryptoMode parseMode(String& mode);
ECryptoMode m_mode;
void* m_crypto;
bool m_encryption;
};