Crypto++
8.7
Free C++ class library of cryptographic schemes
Toggle main menu visibility
Main Page
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Variables
b
d
e
i
k
m
p
r
s
Typedefs
d
e
g
p
s
v
w
Enumerations
Enumerator
a
b
c
d
h
i
m
n
o
p
r
s
t
u
w
z
Related Functions
Files
File List
File Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
Functions
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
Variables
Typedefs
b
c
d
f
h
l
m
s
t
u
w
Enumerations
Enumerator
a
b
c
d
e
g
i
l
n
o
p
r
s
t
u
v
w
x
Macros
c
e
m
n
s
w
aes.h
Go to the documentation of this file.
1
// aes.h - originally written and placed in the public domain by Wei Dai
2
3
/// \file
4
/// \brief Class file for the AES cipher (Rijndael)
5
/// \details AES is a typdef for Rijndael classes. All key sizes are supported.
6
/// The library only provides Rijndael with 128-bit blocks, and not 192-bit or 256-bit blocks
7
/// \since Rijndael since Crypto++ 3.1, Intel AES-NI since Crypto++ 5.6.1, ARMv8 AES since Crypto++ 6.0,
8
/// Power8 AES since Crypto++ 6.0
9
10
#ifndef CRYPTOPP_AES_H
11
#define CRYPTOPP_AES_H
12
13
#include "
rijndael.h
"
14
15
NAMESPACE_BEGIN(
CryptoPP
)
16
17
/// \brief AES block cipher (Rijndael)
18
/// \details AES is a typdef for Rijndael classes. All key sizes are supported.
19
/// The library only provides Rijndael with 128-bit blocks, and not 192-bit or 256-bit blocks
20
/// \sa <a href="http://www.cryptolounge.org/wiki/AES">AES</a> winner, announced on 10/2/2000
21
/// \since Rijndael since Crypto++ 3.1, Intel AES-NI since Crypto++ 5.6.1, ARMv8 AES since Crypto++ 6.0,
22
/// Power8 AES since Crypto++ 6.0
23
DOCUMENTED_TYPEDEF(
Rijndael
,
AES
);
24
25
typedef
RijndaelEncryption
AESEncryption
;
26
typedef
RijndaelDecryption
AESDecryption
;
27
28
NAMESPACE_END
29
30
#endif
AES
AES block cipher (Rijndael)
Definition:
aes.h:23
BlockCipherFinal< ENCRYPTION, Enc >
Rijndael
Rijndael block cipher.
Definition:
rijndael.h:46
CryptoPP
Crypto++ library namespace.
rijndael.h
Classes for Rijndael encryption algorithm.
Generated on Thu Aug 25 2022 17:44:25 for Crypto++ by
1.9.4