20 lines
313 B
C
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
|