[6.4.0] add func of auth cert show

This commit is contained in:
EmArrow
2024-04-08 16:30:05 +08:00
parent afd44e9da7
commit 4e35d90a57
16 changed files with 217 additions and 71 deletions

View File

@@ -12,6 +12,11 @@ interface IMoGoAutopilotCarConfigListener {
*
* @param carConfigResp 包括docker版本macAddress等基础信息详见proto
*/
fun onAutopilotCarConfig(carConfigResp: MessagePad.CarConfigResp)
fun onAutopilotCarConfig(carConfigResp: MessagePad.CarConfigResp){}
/**
* 与工控证书验证结果
*/
fun onCertificationResult(msg: String){}
}

View File

@@ -8,4 +8,6 @@ interface IMoGoCertProvider:IProvider {
fun getDeviceCrtF():String?
fun getRootCrtF(): String?
fun getCrtFileErrorMsg(): String?
}

View File

@@ -6,6 +6,11 @@ interface IMoGoCloudListener{
//单独线程
fun authCrtFile(device:String, root:String){}
/**
* 下载证书文件异常
*/
fun authCrtError(errorMsg: String){}
fun tokenGot(token: String, sn: String){}
/**