Skip to content

Commit 6a4d72c

Browse files
authored
Merge pull request #254 from cppalliance/aes_base
Upgrade basic AES block cipher
2 parents f17fe1d + d6a2ef2 commit 6a4d72c

File tree

5 files changed

+552
-18
lines changed

5 files changed

+552
-18
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// Copyright 2025 Matt Borland
2+
// Distributed under the Boost Software License, Version 1.0.
3+
// https://www.boost.org/LICENSE_1_0.txt
4+
5+
#ifndef BOOST_CIPHER_MODE_HPP
6+
#define BOOST_CIPHER_MODE_HPP
7+
8+
namespace boost::crypt::aes {
9+
10+
enum class cipher_mode
11+
{
12+
ecb, // Electronic Codebook
13+
};
14+
15+
} // namespace boost::crypt::aes
16+
17+
#endif //BOOST_CIPHER_MODE_HPP

0 commit comments

Comments
 (0)