libcryfs/implementations/encrypted/EncryptionKey.h

16 lines
320 B
C
Raw Normal View History

2015-04-09 20:07:03 +02:00
#pragma once
#ifndef MESSMER_BLOCKSTORE_IMPLEMENTATIONS_ENCRYPTED_ENCRYPTIONKEY_H_
#define MESSMER_BLOCKSTORE_IMPLEMENTATIONS_ENCRYPTED_ENCRYPTIONKEY_H_
#include "../../utils/FixedSizeData.h"
2015-04-09 20:07:03 +02:00
namespace blockstore {
namespace encrypted {
2015-04-09 21:17:28 +02:00
using EncryptionKey = FixedSizeData<CryptoPP::AES::MAX_KEYLENGTH>;
2015-04-09 20:07:03 +02:00
}
}
#endif