CryptoFramework
Typedefs
Blob.hpp File Reference
#include <vector>
#include <cstdint>
Include dependency graph for Blob.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Typedefs

typedef std::vector< std::uint8_t > Blob
 Represents a binary data container. More...
 

Typedef Documentation

◆ Blob

Represents a binary data container.

The Blob type is defined as a std::vector of 8-bit unsigned integers (std::uint8_t). It is used to store and manipulate raw binary data in cryptographic operations.