libcryfs/implementations/encrypted/EncryptionKey.h
2015-04-09 20:14:12 +02:00

16 lines
294 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<32>;
}
}
#endif