29 lines
398 B
C
29 lines
398 B
C
|
|
#ifndef iotelic_keystorage_slots_H
|
|
#define iotelic_keystorage_slots_H
|
|
|
|
#include <stdint.h>
|
|
#include "global.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define KEY_SLOT_MAX_SIZE 3000 // Max size of stored key
|
|
|
|
typedef enum {
|
|
KEY_SLOT_0,
|
|
KEY_SLOT_1,
|
|
KEY_SLOT_2,
|
|
KEY_SLOT_3,
|
|
KEY_SLOT_MAX,
|
|
} KEYSTORAGE_SLOT;
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // iotelic_keystorage_slots_H
|