2014-12-09 20:36:32 +01:00
|
|
|
#pragma once
|
|
|
|
#ifndef BLOCKSTORE_UTILS_KEY_H_
|
|
|
|
#define BLOCKSTORE_UTILS_KEY_H_
|
|
|
|
|
|
|
|
#include <string>
|
2015-04-09 20:07:03 +02:00
|
|
|
#include "FixedSizeData.h"
|
2014-12-09 20:36:32 +01:00
|
|
|
|
|
|
|
namespace blockstore {
|
|
|
|
|
|
|
|
// A key here is NOT a key for encryption, but a key as used in key->value mappings ("access handle for a block").
|
2015-04-09 20:07:03 +02:00
|
|
|
using Key = FixedSizeData<16>;
|
2015-03-28 18:44:22 +01:00
|
|
|
|
2014-12-09 20:36:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|