13 lines
158 B
C
13 lines
158 B
C
|
#pragma once
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
struct KeyConfiguration {
|
||
|
|
||
|
const uint8_t* remoteKey;
|
||
|
|
||
|
const uint8_t* localKey;
|
||
|
|
||
|
uint32_t challengeExpiryMs;
|
||
|
};
|