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

20 lines
313 B
C++

#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