libcryfs/implementations/encrypted/EncryptionKey.h

16 lines
294 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 {
using EncryptionKey = FixedSizeData<32>;
2015-04-09 20:07:03 +02:00
}
}
#endif