StormByte C++ Library: Crypto module 0.0.9999
StormByte-Crypto is a StormByte library module for handling cryptographic operations
Loading...
Searching...
No Matches
typedefs.hxx
1#pragma once
2
3#include <StormByte/buffer/generic.hxx>
4#include <StormByte/crypto/exception.hxx>
5#include <StormByte/expected.hxx>
6
7#include <memory>
8
13namespace StormByte::Crypto {
18 enum class ReadMode: unsigned short {
19 Copy,
20 Move
21 };
22}