Crypto++
8.6
Free C++ class library of cryptographic schemes
|
Go to the documentation of this file.
6 #ifndef CRYPTOPP_CAMELLIA_H
7 #define CRYPTOPP_CAMELLIA_H
18 CRYPTOPP_STATIC_CONSTEXPR
const char* StaticAlgorithmName() {
return "Camellia";}
28 void UncheckedSetKey(
const byte *key,
unsigned int keylen,
const NameValuePairs ¶ms);
29 void ProcessAndXorBlock(
const byte *inBlock,
const byte *xorBlock,
byte *outBlock)
const;
32 CRYPTOPP_ALIGN_DATA(4)
static const byte s1[256];
33 static const word32 SP[4][256];
35 unsigned int m_rounds;
Classes and functions for secure memory allocations.
unsigned int word32
32-bit unsigned datatype
Inherited by algorithms with fixed block size.
Provides a base implementation of Algorithm and SimpleKeyingInterface for block ciphers.
Provides Encryption and Decryption typedefs used by derived classes to implement a block cipher.
Classes and functions for implementing secret key algorithms.
Provides class member functions to key a block cipher.
Crypto++ library namespace.
Library configuration file.
Camellia block cipher information.
Interface for retrieving values given their names.
Inherited by keyed algorithms with variable key length.