34 lines
1.3 KiB
C
34 lines
1.3 KiB
C
//
|
|
// Created by cfif on 23.05.2024.
|
|
//
|
|
|
|
#ifndef SMART_COMPONENTS_ATGSMSIMCOMA7600_SSL_LOAD_CA_H
|
|
#define SMART_COMPONENTS_ATGSMSIMCOMA7600_SSL_LOAD_CA_H
|
|
|
|
#include "AtCmdCommon.h"
|
|
#include "AtCmdCommonProtected.h"
|
|
|
|
typedef struct {
|
|
bool isFind1;
|
|
bool isFind2;
|
|
bool isFind3;
|
|
} tIsFind;
|
|
|
|
AtCommandResult AtGsmSimComA7600_SSL_LOAD_CA(tAtCmd *env, const char *fileName, uint16_t FileNameLen, unsigned char *data, uint16_t dataLen, uint32_t timeout);
|
|
|
|
tIsFind AtGsmSimComA7600_SSL_CHECK_CA(tAtCmd *env,
|
|
const char *fileName1, uint16_t FileNameLen1,
|
|
const char *fileName2, uint16_t FileNameLen2,
|
|
const char *fileName3, uint16_t FileNameLen3,
|
|
uint32_t timeout);
|
|
|
|
void AtGsmSimComA7600_SSL_DEL_CA(tAtCmd *env,
|
|
const char *fileName1, uint16_t FileNameLen1,
|
|
const char *fileName2, uint16_t FileNameLen2,
|
|
const char *fileName3, uint16_t FileNameLen3);
|
|
|
|
void AtGsmSimComA7600_SSL_DEL_ONE_CA(tAtCmd *env,
|
|
const char *fileName1, uint16_t FileNameLen1);
|
|
|
|
#endif //SMART_COMPONENTS_ATGSMSIMCOMA7600_SSL_LOAD_CA_H
|