#pragma once #ifndef MESSMER_BLOCKSTORE_IMPLEMENTATIONS_ENCRYPTED_ENCRYPTIONKEY_H_ #define MESSMER_BLOCKSTORE_IMPLEMENTATIONS_ENCRYPTED_ENCRYPTIONKEY_H_ namespace blockstore { namespace encrypted { class EncryptionKey { public: EncryptionKey(); static EncryptionKey private: byte key[32]; }; } } #endif