Files
GCrypt/GCryptLib/include/GCrypt/Flexblock.h
2022-05-22 17:29:38 +02:00

13 lines
186 B
C++

#ifndef GCRYPT_FLEXBLOCK_H
#define GCRYPT_FLEXBLOCK_H
#include <string>
namespace Leonetienne::GCrypt {
//! A "bitset" of variable length
typedef std::string Flexblock;
}
#endif