libcryfs/implementations/encrypted/EncryptionKey.h

20 lines
313 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_
namespace blockstore {
namespace encrypted {
class EncryptionKey {
public:
EncryptionKey();
static EncryptionKey
private:
byte key[32];
};
}
}
#endif