mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-07-04 06:16:20 +12:00
Remove cryptoppwin submodule (#754)
Some checks failed
Android Build / x64 (release) (push) Has been cancelled
Android Build / arm64 (release) (push) Has been cancelled
HTTP Server Build / build (push) Has been cancelled
Hydra Core Build / Windows (push) Has been cancelled
Hydra Core Build / MacOS (push) Has been cancelled
Hydra Core Build / Linux (push) Has been cancelled
Hydra Core Build / Android-x64 (push) Has been cancelled
Hydra Core Build / ARM-Libretro (push) Has been cancelled
Linux AppImage Build / build (push) Has been cancelled
Linux Build / build (push) Has been cancelled
MacOS Build / MacOS-arm64 (push) Has been cancelled
MacOS Build / MacOS-x86_64 (push) Has been cancelled
MacOS Build / MacOS-Universal (push) Has been cancelled
Qt Build / Windows (push) Has been cancelled
Qt Build / MacOS-arm64 (push) Has been cancelled
Qt Build / MacOS-x86_64 (push) Has been cancelled
Qt Build / MacOS-Universal (push) Has been cancelled
Qt Build / Linux (push) Has been cancelled
Windows Build / build (push) Has been cancelled
iOS Simulator Build / build (push) Has been cancelled
Some checks failed
Android Build / x64 (release) (push) Has been cancelled
Android Build / arm64 (release) (push) Has been cancelled
HTTP Server Build / build (push) Has been cancelled
Hydra Core Build / Windows (push) Has been cancelled
Hydra Core Build / MacOS (push) Has been cancelled
Hydra Core Build / Linux (push) Has been cancelled
Hydra Core Build / Android-x64 (push) Has been cancelled
Hydra Core Build / ARM-Libretro (push) Has been cancelled
Linux AppImage Build / build (push) Has been cancelled
Linux Build / build (push) Has been cancelled
MacOS Build / MacOS-arm64 (push) Has been cancelled
MacOS Build / MacOS-x86_64 (push) Has been cancelled
MacOS Build / MacOS-Universal (push) Has been cancelled
Qt Build / Windows (push) Has been cancelled
Qt Build / MacOS-arm64 (push) Has been cancelled
Qt Build / MacOS-x86_64 (push) Has been cancelled
Qt Build / MacOS-Universal (push) Has been cancelled
Qt Build / Linux (push) Has been cancelled
Windows Build / build (push) Has been cancelled
iOS Simulator Build / build (push) Has been cancelled
This commit is contained in:
parent
5591606177
commit
6182d4cfe9
198 changed files with 51291 additions and 4 deletions
112
third_party/cryptoppwin/include/cryptopp/rabbit.h
vendored
Normal file
112
third_party/cryptoppwin/include/cryptopp/rabbit.h
vendored
Normal file
|
@ -0,0 +1,112 @@
|
|||
// 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
|
||||
// The eSTREAM Project, http://www.ecrypt.eu.org/stream/e2-rabbit.html.
|
||||
|
||||
/// \file rabbit.h
|
||||
/// \brief Classes for Rabbit stream cipher
|
||||
/// \sa <A HREF="http://www.ecrypt.eu.org/stream/e2-rabbit.html">The
|
||||
/// eSTREAM Project | Rabbit</A> and
|
||||
/// <A HREF="https://www.cryptopp.com/wiki/Rabbit">Crypto++ Wiki | Rabbit</A>.
|
||||
/// \since Crypto++ 8.0
|
||||
|
||||
#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
|
||||
/// \since Crypto++ 8.0
|
||||
struct RabbitInfo : public FixedKeyLength<16, SimpleKeyingInterface::NOT_RESYNCHRONIZABLE>
|
||||
{
|
||||
CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() { return "Rabbit"; }
|
||||
};
|
||||
|
||||
/// \brief Rabbit stream cipher information
|
||||
/// \since Crypto++ 8.0
|
||||
struct RabbitWithIVInfo : public FixedKeyLength<16, SimpleKeyingInterface::UNIQUE_IV, 8>
|
||||
{
|
||||
CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() { return "RabbitWithIV"; }
|
||||
};
|
||||
|
||||
/// \brief Rabbit stream cipher implementation
|
||||
/// \since Crypto++ 8.0
|
||||
class RabbitPolicy : public AdditiveCipherConcretePolicy<word32, 4>, public RabbitInfo
|
||||
{
|
||||
protected:
|
||||
void CipherSetKey(const NameValuePairs ¶ms, 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; }
|
||||
|
||||
private:
|
||||
// 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
|
||||
/// \since Crypto++ 8.0
|
||||
class RabbitWithIVPolicy : public AdditiveCipherConcretePolicy<word32, 4>, public RabbitWithIVInfo
|
||||
{
|
||||
protected:
|
||||
void CipherSetKey(const NameValuePairs ¶ms, 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; }
|
||||
|
||||
private:
|
||||
// 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
|
||||
/// \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
|
||||
/// Profile 1 (software) ciphers selected for the eSTREAM portfolio.
|
||||
/// \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
|
||||
/// <A HREF="https://www.cryptopp.com/wiki/Rabbit">Crypto++ Wiki | Rabbit</A>.
|
||||
/// \since Crypto++ 8.0
|
||||
struct Rabbit : public RabbitInfo, public SymmetricCipherDocumentation
|
||||
{
|
||||
typedef SymmetricCipherFinal<ConcretePolicyHolder<RabbitPolicy, AdditiveCipherTemplate<> >, RabbitInfo> Encryption;
|
||||
typedef Encryption Decryption;
|
||||
};
|
||||
|
||||
/// \brief Rabbit stream cipher
|
||||
/// \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
|
||||
/// Profile 1 (software) ciphers selected for the eSTREAM portfolio.
|
||||
/// \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
|
||||
/// <A HREF="https://www.cryptopp.com/wiki/Rabbit">Crypto++ Wiki | Rabbit</A>.
|
||||
/// \since Crypto++ 8.0
|
||||
struct RabbitWithIV : public RabbitWithIVInfo, public SymmetricCipherDocumentation
|
||||
{
|
||||
typedef SymmetricCipherFinal<ConcretePolicyHolder<RabbitWithIVPolicy, AdditiveCipherTemplate<> >, RabbitWithIVInfo> Encryption;
|
||||
typedef Encryption Decryption;
|
||||
};
|
||||
|
||||
NAMESPACE_END
|
||||
|
||||
#endif // CRYPTOPP_RABBIT_H
|
Loading…
Add table
Add a link
Reference in a new issue