Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions include/boost/crypt2/aes/cipher_mode.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// Copyright 2025 Matt Borland
// Distributed under the Boost Software License, Version 1.0.
// https://www.boost.org/LICENSE_1_0.txt

#ifndef BOOST_CIPHER_MODE_HPP
#define BOOST_CIPHER_MODE_HPP

namespace boost::crypt::aes {

enum class cipher_mode
{
ecb, // Electronic Codebook
};

} // namespace boost::crypt::aes

#endif //BOOST_CIPHER_MODE_HPP
Loading