21 lines
474 B
C
21 lines
474 B
C
/**
|
|
@file Certificate.h
|
|
|
|
@brief Here is saved certificate for communication with servers
|
|
|
|
@author Miroslav Pivovarsky
|
|
Contact: miroslav.pivovarsky@gmail.com
|
|
|
|
@bug: no know bug
|
|
*/
|
|
|
|
#ifndef _CERTIFICATE_H_
|
|
#define _CERTIFICATE_H_
|
|
|
|
extern const char* root_CAs; ///< root certificate for communication with prusa servers
|
|
extern const char* root_CAs_ota; ///< root certificate for communication with servers
|
|
|
|
#endif
|
|
|
|
/* EOF */
|