mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
12 lines
281 B
C++
12 lines
281 B
C++
#ifndef AESLANIER_H
|
|
#define AESLANIER_H
|
|
|
|
#define AESLANIER_RECORD_SEPARATOR 0x55555122
|
|
#define AESLANIER_SECTOR_LENGTH 256
|
|
#define AESLANIER_RECORD_SIZE (AESLANIER_SECTOR_LENGTH + 5)
|
|
|
|
extern std::unique_ptr<Decoder> createAesLanierDecoder(
|
|
const DecoderProto& config);
|
|
|
|
#endif
|