12 lines
243 B
C
12 lines
243 B
C
// This header is used to access the baked-in certificate if one is in use.
|
|
#ifndef KEYS_H_
|
|
#define KEYS_H_
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
extern const uint8_t kPrivateKey[];
|
|
extern const size_t kPrivateKeySize;
|
|
|
|
#endif // KEYS_H_
|