ext-cryptopp/rabbit.h

113 lines
4.8 KiB
C
Raw Normal View History

2018-07-04 07:47:28 +00:00
// rabbit.h - written and placed in the public domain by Jeffrey Walton
// based on public domain code by Martin Boesgaard, Mette Vesterager,
// Thomas Pedersen, Jesper Christiansen and Ove Scavenius.
//
// The reference materials and source files are available at
2018-07-04 11:08:14 +00:00
// The eSTREAM Project, http://www.ecrypt.eu.org/stream/e2-rabbit.html.
2018-07-04 07:47:28 +00:00
/// \file rabbit.h
/// \brief Classes for Rabbit stream cipher
2018-07-04 11:08:14 +00:00
/// \sa <A HREF="http://www.ecrypt.eu.org/stream/e2-rabbit.html">The
/// eSTREAM Project | Rabbit</A> and
2018-07-04 07:47:28 +00:00
/// <A HREF="https://www.cryptopp.com/wiki/Rabbit">Crypto++ Wiki | Rabbit</A>.
2018-12-27 23:30:38 +00:00
/// \since Crypto++ 8.0
2018-07-04 07:47:28 +00:00
#ifndef CRYPTOPP_RABBIT_H
#define CRYPTOPP_RABBIT_H
#include "strciphr.h"
#include "secblock.h"
// The library does not have a way to describe an optional IV. Rabbit takes
// an optional IV so two classes are offered to bridge the gap. One provides
// Rabbit without an IV and the second provides Rabbit with an IV.
NAMESPACE_BEGIN(CryptoPP)
/// \brief Rabbit stream cipher information
2018-12-27 23:30:38 +00:00
/// \since Crypto++ 8.0
2018-07-04 07:47:28 +00:00
struct RabbitInfo : public FixedKeyLength<16, SimpleKeyingInterface::NOT_RESYNCHRONIZABLE>
{
CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() { return "Rabbit"; }
};
/// \brief Rabbit stream cipher information
2018-12-27 23:30:38 +00:00
/// \since Crypto++ 8.0
2018-07-04 07:47:28 +00:00
struct RabbitWithIVInfo : public FixedKeyLength<16, SimpleKeyingInterface::UNIQUE_IV, 8>
{
CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() { return "RabbitWithIV"; }
};
/// \brief Rabbit stream cipher implementation
2018-12-27 23:30:38 +00:00
/// \since Crypto++ 8.0
2018-07-04 07:47:28 +00:00
class RabbitPolicy : public AdditiveCipherConcretePolicy<word32, 4>, public RabbitInfo
{
protected:
void CipherSetKey(const NameValuePairs &params, const byte *key, size_t length);
void OperateKeystream(KeystreamOperation operation, byte *output, const byte *input, size_t iterationCount);
bool CanOperateKeystream() const { return true; }
bool CipherIsRandomAccess() const { return false; }
2018-07-06 02:42:17 +00:00
private:
2018-07-04 07:47:28 +00:00
// Master and working states
FixedSizeSecBlock<word32, 8> m_mx, m_mc, m_wx, m_wc;
// Workspace
FixedSizeSecBlock<word32, 12> m_t;
word32 m_mcy, m_wcy; // carry
};
/// \brief Rabbit stream cipher implementation
2018-12-27 23:30:38 +00:00
/// \since Crypto++ 8.0
2018-07-04 07:47:28 +00:00
class RabbitWithIVPolicy : public AdditiveCipherConcretePolicy<word32, 4>, public RabbitWithIVInfo
{
protected:
void CipherSetKey(const NameValuePairs &params, const byte *key, size_t length);
void OperateKeystream(KeystreamOperation operation, byte *output, const byte *input, size_t iterationCount);
void CipherResynchronize(byte *keystreamBuffer, const byte *iv, size_t length);
bool CanOperateKeystream() const { return true; }
bool CipherIsRandomAccess() const { return false; }
2018-07-06 02:42:17 +00:00
private:
2018-07-04 07:47:28 +00:00
// Master and working states
FixedSizeSecBlock<word32, 8> m_mx, m_mc, m_wx, m_wc;
// Workspace
FixedSizeSecBlock<word32, 12> m_t;
word32 m_mcy, m_wcy; // carry
};
/// \brief Rabbit stream cipher
2018-07-04 07:59:22 +00:00
/// \details Rabbit is a stream cipher developed by Martin Boesgaard, Mette Vesterager,
/// Thomas Pedersen, Jesper Christiansen and Ove Scavenius. Rabbit is one of the final four
2018-07-05 10:07:47 +00:00
/// Profile 1 (software) ciphers selected for the eSTREAM portfolio.
2018-07-04 11:08:14 +00:00
/// \details Crypto++ provides Rabbit and RabbitWithIV classes. Two classes are necessary
/// because the library lacks the means to describe and manage optional IVs.
/// \sa RabbitWithIV, <A HREF="http://www.ecrypt.eu.org/stream/e2-rabbit.html">The
/// eSTREAM Project | Rabbit</A> and
2018-07-04 07:47:28 +00:00
/// <A HREF="https://www.cryptopp.com/wiki/Rabbit">Crypto++ Wiki | Rabbit</A>.
2018-12-27 23:30:38 +00:00
/// \since Crypto++ 8.0
2018-07-04 07:47:28 +00:00
struct Rabbit : public RabbitInfo, public SymmetricCipherDocumentation
{
typedef SymmetricCipherFinal<ConcretePolicyHolder<RabbitPolicy, AdditiveCipherTemplate<> >, RabbitInfo> Encryption;
typedef Encryption Decryption;
};
/// \brief Rabbit stream cipher
2018-07-04 07:59:22 +00:00
/// \details Rabbit is a stream cipher developed by Martin Boesgaard, Mette Vesterager,
/// Thomas Pedersen, Jesper Christiansen and Ove Scavenius. Rabbit is one of the final four
2018-07-05 10:07:47 +00:00
/// Profile 1 (software) ciphers selected for the eSTREAM portfolio.
2018-07-04 11:08:14 +00:00
/// \details Crypto++ provides Rabbit and RabbitWithIV classes. Two classes are necessary
/// because the library lacks the means to describe and manage optional IVs.
/// \sa Rabbit, <A HREF="http://www.ecrypt.eu.org/stream/e2-rabbit.html">The
/// eSTREAM Project | Rabbit</A> and
2018-07-04 07:47:28 +00:00
/// <A HREF="https://www.cryptopp.com/wiki/Rabbit">Crypto++ Wiki | Rabbit</A>.
2018-12-27 23:30:38 +00:00
/// \since Crypto++ 8.0
2018-07-04 07:47:28 +00:00
struct RabbitWithIV : public RabbitWithIVInfo, public SymmetricCipherDocumentation
{
typedef SymmetricCipherFinal<ConcretePolicyHolder<RabbitWithIVPolicy, AdditiveCipherTemplate<> >, RabbitWithIVInfo> Encryption;
typedef Encryption Decryption;
};
NAMESPACE_END
#endif // CRYPTOPP_RABBIT_H