13 lines
186 B
C++
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
|
|
|