16 lines
320 B
C++
16 lines
320 B
C++
#pragma once
|
|
#ifndef MESSMER_BLOCKSTORE_IMPLEMENTATIONS_ENCRYPTED_ENCRYPTIONKEY_H_
|
|
#define MESSMER_BLOCKSTORE_IMPLEMENTATIONS_ENCRYPTED_ENCRYPTIONKEY_H_
|
|
|
|
#include "../../utils/FixedSizeData.h"
|
|
|
|
namespace blockstore {
|
|
namespace encrypted {
|
|
|
|
using EncryptionKey = FixedSizeData<CryptoPP::AES::MAX_KEYLENGTH>;
|
|
|
|
}
|
|
}
|
|
|
|
#endif
|