Can get root CA

This commit is contained in:
2024-08-18 19:42:40 +02:00
parent 3b6e79e5e4
commit a6b283d023
6 changed files with 66 additions and 3 deletions

View File

@ -40,13 +40,23 @@ extern "C"
/**
* Write secure origin
*/
void storage_set_secure_origin(const char *name);
void storage_set_secure_origin(const char *orig);
/**
* Get current secure origin
*/
size_t storage_get_secure_origin(char *dest);
/**
* Write root CA
*/
void storage_set_root_ca(const char *ca);
/**
* Get current root CA
*/
size_t storage_get_root_ca(char *dest);
#ifdef __cplusplus
}
#endif