From ed9dbeb95a8f285bb3e7c5dfe07682a640bb4866 Mon Sep 17 00:00:00 2001 From: zhanzeyi Date: Wed, 19 Jan 2022 16:45:54 +0800 Subject: [PATCH 1/3] add catalogue in readme Signed-off-by: zhanzeyi --- README.md | 13 +++ README_ZH.md | 13 +++ docs/README_ZH.md | 241 ---------------------------------------------- 3 files changed, 26 insertions(+), 241 deletions(-) delete mode 100644 docs/README_ZH.md diff --git a/README.md b/README.md index d7c32c64..199ae8ec 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,25 @@ # developtools_hapsigner * Description +* catalogue * Installation * Instructions * Auto generate script #### Description In order to ensure the integrity and reliability of the OpenHarmony application, the application needs to be signed when the application is built, so that the application can be installed, run, and debugged on a real device. This warehouse provides a jar toolkit with functions such as certificate generation and hap package signature. + +#### catalogue + + developtools_hapsigner + + ├── autosign # One-click signature script + ├── docs # Documentation + ├── hapsigntool # Main code + ├──hap_sign_tool # The main program entrance completes the basic verification of input parameters + ├──hap_sign_tool_lib # Signature tool library, parses the command word and parameter list, and realizes the logical function of each module + ├── tools # Automated test script + #### Installation 1. Clone this git 2. Configure the operating environment :Gradle 7.1, JDK 8 diff --git a/README_ZH.md b/README_ZH.md index e0a20590..24b813e1 100644 --- a/README_ZH.md +++ b/README_ZH.md @@ -1,6 +1,7 @@ # Hap包签名工具 * 介绍 +* 目录 * 安装教程 * 使用说明 * 一键签名脚本 @@ -9,6 +10,18 @@ #### 介绍 为了保证OpenHarmony应用的完整性和来源可靠,在应用构建时需要对应用进行签名,才能在使用真机设备上安装、运行和调试该应用。本仓提供了一个具有证书生成、hap包签名等功能的jar工具包。 +#### 目录 + + developtools_hapsigner + + ├── autosign # 一键签名脚本 + ├── docs # 说明文档 + ├── hapsigntool # 主代码 + ├──hap_sign_tool # 主程序入口,完成输入参数的基础校验 + ├──hap_sign_tool_lib # 签名工具库,解析命令字和参数列表,实现各模块逻辑功能 + ├── tools # 自动化测试脚本 + + #### 安装教程 1. 配置编译环境 :Gradle 7.1,JDK 8 2. 下载代码 diff --git a/docs/README_ZH.md b/docs/README_ZH.md deleted file mode 100644 index 2e321a3e..00000000 --- a/docs/README_ZH.md +++ /dev/null @@ -1,241 +0,0 @@ -# Hap包签名工具 - -* 介绍 -* 安装教程 -* 使用说明 -* 一键签名脚本 -* (附)命令说明 - -#### 介绍 -为了保证OpenHarmony应用的完整性和来源可靠,在应用构建时需要对应用进行签名,才能在使用真机设备上安装、运行和调试该应用。本仓提供了一个具有证书生成、hap包签名等功能的jar工具包。 - -#### 安装教程 -1. 配置编译环境 :Gradle 7.1,JDK 8 -2. 下载代码 -3. 命令行打开文件至developtools_hapsigner/hapsigntool目录下 -4. **gradle build** 或 **gradle jar**编译生成jar -5. 文件在./hap_sign_tool/build/libs/hap_sign_tool-xxxx.jar - -#### 目录 - -```undefined -├─gradle -├─hap_sign_tool -│ └─src -│ ├─main -│ │ ├─java -│ │ │ └─com -│ │ │ └─ohos -│ │ │ ├─hapsigntool -│ │ │ └─hapsigntoolcmd -│ │ └─resources -│ └─test -│ ├─java -│ │ └─com -│ │ └─ohos -│ │ ├─hapsigntool -│ │ └─hapsigntoolcmd -│ └─resources -├─hap_sign_tool_lib -│ └─src -│ ├─main -│ │ ├─java -│ │ │ └─com -│ │ │ └─ohos -│ │ │ └─hapsigntool -│ │ │ ├─api -│ │ │ ├─cert -│ │ │ ├─hap -│ │ │ ├─key -│ │ │ ├─keystore -│ │ │ ├─profile -│ │ │ ├─signer -│ │ │ ├─utils -│ │ │ └─zip -│ │ └─resources -│ └─test -│ ├─java -│ │ └─com -│ │ └─ohos -│ │ └─hapsigntool -│ │ ├─api -│ │ ├─cert -│ │ ├─hap -│ │ ├─key -│ │ ├─keystore -│ │ ├─profile -│ │ ├─signer -│ │ ├─utils -│ │ └─zip -│ └─resources -├─README -├─README_zh -└─tool -``` - -#### 使用说明 -命令示例: - -```shell -java -jar <签名工具.jar> <命令> <参数...> -``` - -完整使用示例: -```shell -java -jar hap_sign_tool.jar generate-csr -keyAlias "oh-app1-key-v1" -keyPwd ***** -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withECDSA -keystoreFile "D:\OH\ohtest.jks" -keystorePwd ***** -outFile "D:\OH\oh-app1-key-v1.csr" -``` - -也可以使用 -help 查看完整使用说明 -```shell -java -jar hap_sign_tool.jar -help -``` -**** - -#### 一键签名脚本 -使用一键签名脚本,免于输入繁杂的命令 - -打开本项目子目录autosign可见: -* start_create.sh/start_create.bat -* start_sign.sh/start_sign.bat -* auto_sign_main.py -* auto_sign.conf - -操作流程 -1. 脚本依赖环境python3.x -2. 脚本依赖hap_sign_tool.jar(参照上文编译生成的产物) -3. 准备好待签名的应用hap包和Provision profile模板文件 -4. 使用文本编辑器编辑auto_sign.conf,补全配置文件中的配置 -5. Linux运行start_create.sh、Windows运行start_create.bat生成签名所需文件 -6. Linux运行start_sign.sh、Windows运行start_sign.bat对hap包进行签名 - -**** -#### (附)命令说明: -##### 生成密钥对 -* generate-keypair : 生成密钥对 - * -keyAlias : 密钥别名,必填项; - * -keyPwd : 密钥口令,可选项; - * -keyAlg : 密钥算法,必填项,包括RSA/ECC; - * -keySize : 密钥长度,必填项,RSA算法的长度为2048/3072/4096,ECC算法的长度NIST-P-256/NIST-P-384; - * -keystoreFile : 密钥库文件,必填项,JKS或P12格式; - * -keystorePwd : 密钥库口令,可选项; - -##### 生成证书签名请求 -* generate-csr : 生成证书签名请求 - * -keyAlias : 密钥别名,必填项; - * -keyPwd : 密钥口令,可选项; - * -subject : 证书主题,必填项; - * -signAlg : 签名算法,必填项,包括SHA256withRSA / SHA384withRSA / SHA256withECDSA / SHA384withECDSA; - * -keystoreFile : 密钥库文件,必填项,JKS或P12格式; - * -keystorePwd : 密钥库口令,可选项; - * -outFile : 输出文件,可选项,如果不填,则直接输出到控制台; - -##### 生成根CA/子CA证书 -* generate-ca : 生成根CA/子CA证书,如果密钥不存在,一起生成密钥 - * -keyAlias : 密钥别名,必填项; - * -keyPwd : 密钥口令,可选项; - * -keyAlg : 密钥算法,必填项,包括RSA/ECC; - * -keySize : 密钥长度,必填项,RSA算法的长度为2048/3072/4096,ECC算法的长度NIST-P-256/NIST-P-384; - * -issuer : 颁发者的主题,可选项,如果不填,表示根CA - * -issuerKeyAlias : 颁发者的密钥别名,可选项,如果不填,表示根CA; - * -issuerKeyPwd : 颁发者的密钥口令,可选项 - * -subject : 证书主题,必填项; - * -validity : 证书有效期,可选项,默认为3650天; - * -signAlg : 签名算法,必填项,包括SHA256withRSA / SHA384withRSA / SHA256withECDSA / SHA384withECDSA; - * -basicConstraintsPathLen : 路径长度,可选项,默认为0; - * -keystoreFile : 密钥库文件,必填项,JKS或P12格式; - * -keystorePwd : 密钥库口令,可选项; - * -outFile : 输出证书文件,可选项,如果不填,则直接输出到控制台; - -##### 生成应用调试/发布证书 -* generate-app-cert : 生成应用调试/发布证书 - * -keyAlias : 密钥别名,必填项; - * -keyPwd : 密钥口令,可选项; - * -issuer : 颁发者的主题,必填项; - * -issuerKeyAlias : 颁发者的密钥别名,必填项; - * -issuerKeyPwd : 颁发者的密钥口令,可选项; - * -subject : 证书主题,必填项; - * -validity : 证书有效期,可选项,默认为1095天; - * -signAlg : 签名算法,必填项,包括SHA256withECDSA / SHA384withECDSA; - * -keystoreFile : 密钥库文件,必填项,JKS或P12格式; - * -keystorePwd : 密钥库口令,可选项; - * -outForm: 输出证书文件的格式,包括 cert / certChain,可选项,默认为certChain; - * -rootCaCertFile: outForm为certChain时必填,根CA证书文件; - * -subCaCertFile: outForm为certChain时必填,二级子CA证书文件; - * -outFile : 输出证书文件(证书或证书链),可选项,如果不填,则直接输出到控制台; - -##### 生成应用调试/发布证书 -* generate-profile-cert : 生成profile调试/发布证书 - * -keyAlias : 密钥别名,必填项; - * -keyPwd : 密钥口令,可选项; - * -issuer : 颁发者的主题,必填项; - * -issuerKeyAlias : 颁发者的密钥别名,必填项; - * -issuerKeyPwd : 颁发者的密钥口令,可选项; - * -subject : 证书主题,必填项; - * -validity : 证书有效期,可选项,默认为1095天; - * -signAlg : 签名算法,必填项,包括SHA256withECDSA / SHA384withECDSA; - * -keystoreFile : 密钥库文件,必填项,JKS或P12格式; - * -keystorePwd : 密钥库口令,可选项; - * -outForm: 输出证书文件的格式,包括 cert / certChain,可选项,默认为certChain; - * -rootCaCertFile: outForm为certChain时必填,根CA证书文件; - * -subCaCertFile: outForm为certChain时必填,二级子CA证书文件; - * -outFile : 输出证书文件(证书或证书链),可选项,如果不填,则直接输出到控制台; - -##### 通用证书生成,可以生成自定义证书 -* generate-cert : 通用证书生成,可以生成自定义证书 - * -keyAlias : 密钥别名,必填项; - * -keyPwd : 密钥口令,可选项; - * -issuer : 颁发者的主题,必填项; - * -issuerKeyAlias : 颁发者的密钥别名,必填项; - * -issuerKeyPwd : 颁发者的密钥口令,可选项; - * -subject : 证书主题,必填项; - * -validity : 证书有效期,可选项,默认为1095天; - * -keyUsage : 密钥用法,必选项,包括digitalSignature, nonRepudiation, keyEncipherment, dataEncipherment, keyAgreement, certificateSignature, crlSignature, encipherOnly和decipherOnly,如果证书包括多个密钥用法,用逗号分隔; - * -keyUsageCritical : keyUsage是否为关键项,可选项,默认为是; - * -extKeyUsage : 扩展密钥用法,可选项,包括clientAuthentication,serverAuthentication,codeSignature,emailProtection,smartCardLogin,timestamp,ocspSignature; - * -extKeyUsageCritical : extKeyUsage是否为关键项,可选项,默认为否; - * -signAlg : 签名算法,必填项,包括SHA256withRSA / SHA384withRSA / SHA256withECDSA / SHA384withECDSA; - * -basicConstraints : 是否包含basicConstraints,可选项,默认为否; - * -basicConstraintsCritical : basicConstraints是否包含为关键项,可选项,默认为否; - * -basicConstraintsCa : 是否为CA,可选项,默认为否; - * -basicConstraintsPathLen : 路径长度,可选项,默认为0; - * -keystoreFile : 密钥库文件,必填项,JKS或P12格式; - * -keystorePwd : 密钥库口令,可选项; - * -outFile : 输出证书文件,可选项,如果不填,则直接输出到控制台; - -##### ProvisionProfile文件签名 -* sign-profile : ProvisionProfile文件签名 - * -mode : 签名模式,必填项,包括localSign,remoteSign; - * -keyAlias : 密钥别名,必填项; - * -keyPwd : 密钥口令,可选项; - * -profileCertFile : Profile签名证书(证书链,顺序为三级-二级-根),必填项; - * -inFile : 输入的原始Provision Profile文件,必填项; - * -signAlg : 签名算法,必填项,包括SHA256withECDSA / SHA384withECDSA; - * -keystoreFile : 密钥库文件,localSign模式时为必填项,JKS或P12格式; - * -keystorePwd : 密钥库口令,可选项; - * -outFile : 输出签名后的Provision Profile文件,p7b格式,必填项; - -##### ProvisionProfile文件验签 -* verify-profile : ProvisionProfile文件验签 - * -inFile:已签名的Provision Profile文件,p7b格式,必填项; - * -outFile:验证结果文件(包含验证结果和profile内容),json格式,可选项;如果不填,则直接输出到控制台; - -##### hap应用包签名 -* sign-app : hap应用包签名 - * -mode:签名模式,必填项,包括localSign,remoteSign,remoteResign; - * -keyAlias:密钥别名,必填项; - * -keyPwd:密钥口令,可选项; - * -appCertFile:应用签名证书文件(证书链,顺序为三级-二级-根),必填项; - * -profileFile:签名后的Provision Profile文件名,p7b格式,必填项; - * -profileSigned:指示profile文件是否带有签名,1表示有签名,0表示没有签名,默认为1。可选项; - * -inForm:输入的原始文件的格式,zip格式或bin格式,默认zip格式;可选项; - * -inFile:输入的原始APP包文件,hap格式或bin格式,必填项; - * -signAlg:签名算法,必填项,包括SHA256withECDSA / SHA384withECDSA; - * -keystoreFile:密钥库文件,localSign模式时为必填项,JKS或P12格式; - * -keystorePwd: 密钥库口令,可选项; - * -outFile: 输出签名后的包文件,必填项; - -##### hap应用包文件验签 -* verify-app : hap应用包文件验签 - * -inFile:已签名的应用包文件,hap格式或bin格式,必填项; - * -outCertchain:签名的证书链文件,必填项; - * -outProfile:应用包中的profile文件,必填项; -- Gitee From f9dc33722a50467769b6bfbcbfc1c60b17ca4bd7 Mon Sep 17 00:00:00 2001 From: zhanzeyi Date: Wed, 19 Jan 2022 16:45:54 +0800 Subject: [PATCH 2/3] add catalogue in readme and update commands.config Signed-off-by: zhanzeyi --- README.md | 13 + README_ZH.md | 13 + docs/README_ZH.md | 241 ------------- tools/commands.config | 802 +++++++++++++++++++++--------------------- 4 files changed, 427 insertions(+), 642 deletions(-) delete mode 100644 docs/README_ZH.md diff --git a/README.md b/README.md index d7c32c64..199ae8ec 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,25 @@ # developtools_hapsigner * Description +* catalogue * Installation * Instructions * Auto generate script #### Description In order to ensure the integrity and reliability of the OpenHarmony application, the application needs to be signed when the application is built, so that the application can be installed, run, and debugged on a real device. This warehouse provides a jar toolkit with functions such as certificate generation and hap package signature. + +#### catalogue + + developtools_hapsigner + + ├── autosign # One-click signature script + ├── docs # Documentation + ├── hapsigntool # Main code + ├──hap_sign_tool # The main program entrance completes the basic verification of input parameters + ├──hap_sign_tool_lib # Signature tool library, parses the command word and parameter list, and realizes the logical function of each module + ├── tools # Automated test script + #### Installation 1. Clone this git 2. Configure the operating environment :Gradle 7.1, JDK 8 diff --git a/README_ZH.md b/README_ZH.md index e0a20590..24b813e1 100644 --- a/README_ZH.md +++ b/README_ZH.md @@ -1,6 +1,7 @@ # Hap包签名工具 * 介绍 +* 目录 * 安装教程 * 使用说明 * 一键签名脚本 @@ -9,6 +10,18 @@ #### 介绍 为了保证OpenHarmony应用的完整性和来源可靠,在应用构建时需要对应用进行签名,才能在使用真机设备上安装、运行和调试该应用。本仓提供了一个具有证书生成、hap包签名等功能的jar工具包。 +#### 目录 + + developtools_hapsigner + + ├── autosign # 一键签名脚本 + ├── docs # 说明文档 + ├── hapsigntool # 主代码 + ├──hap_sign_tool # 主程序入口,完成输入参数的基础校验 + ├──hap_sign_tool_lib # 签名工具库,解析命令字和参数列表,实现各模块逻辑功能 + ├── tools # 自动化测试脚本 + + #### 安装教程 1. 配置编译环境 :Gradle 7.1,JDK 8 2. 下载代码 diff --git a/docs/README_ZH.md b/docs/README_ZH.md deleted file mode 100644 index 2e321a3e..00000000 --- a/docs/README_ZH.md +++ /dev/null @@ -1,241 +0,0 @@ -# Hap包签名工具 - -* 介绍 -* 安装教程 -* 使用说明 -* 一键签名脚本 -* (附)命令说明 - -#### 介绍 -为了保证OpenHarmony应用的完整性和来源可靠,在应用构建时需要对应用进行签名,才能在使用真机设备上安装、运行和调试该应用。本仓提供了一个具有证书生成、hap包签名等功能的jar工具包。 - -#### 安装教程 -1. 配置编译环境 :Gradle 7.1,JDK 8 -2. 下载代码 -3. 命令行打开文件至developtools_hapsigner/hapsigntool目录下 -4. **gradle build** 或 **gradle jar**编译生成jar -5. 文件在./hap_sign_tool/build/libs/hap_sign_tool-xxxx.jar - -#### 目录 - -```undefined -├─gradle -├─hap_sign_tool -│ └─src -│ ├─main -│ │ ├─java -│ │ │ └─com -│ │ │ └─ohos -│ │ │ ├─hapsigntool -│ │ │ └─hapsigntoolcmd -│ │ └─resources -│ └─test -│ ├─java -│ │ └─com -│ │ └─ohos -│ │ ├─hapsigntool -│ │ └─hapsigntoolcmd -│ └─resources -├─hap_sign_tool_lib -│ └─src -│ ├─main -│ │ ├─java -│ │ │ └─com -│ │ │ └─ohos -│ │ │ └─hapsigntool -│ │ │ ├─api -│ │ │ ├─cert -│ │ │ ├─hap -│ │ │ ├─key -│ │ │ ├─keystore -│ │ │ ├─profile -│ │ │ ├─signer -│ │ │ ├─utils -│ │ │ └─zip -│ │ └─resources -│ └─test -│ ├─java -│ │ └─com -│ │ └─ohos -│ │ └─hapsigntool -│ │ ├─api -│ │ ├─cert -│ │ ├─hap -│ │ ├─key -│ │ ├─keystore -│ │ ├─profile -│ │ ├─signer -│ │ ├─utils -│ │ └─zip -│ └─resources -├─README -├─README_zh -└─tool -``` - -#### 使用说明 -命令示例: - -```shell -java -jar <签名工具.jar> <命令> <参数...> -``` - -完整使用示例: -```shell -java -jar hap_sign_tool.jar generate-csr -keyAlias "oh-app1-key-v1" -keyPwd ***** -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withECDSA -keystoreFile "D:\OH\ohtest.jks" -keystorePwd ***** -outFile "D:\OH\oh-app1-key-v1.csr" -``` - -也可以使用 -help 查看完整使用说明 -```shell -java -jar hap_sign_tool.jar -help -``` -**** - -#### 一键签名脚本 -使用一键签名脚本,免于输入繁杂的命令 - -打开本项目子目录autosign可见: -* start_create.sh/start_create.bat -* start_sign.sh/start_sign.bat -* auto_sign_main.py -* auto_sign.conf - -操作流程 -1. 脚本依赖环境python3.x -2. 脚本依赖hap_sign_tool.jar(参照上文编译生成的产物) -3. 准备好待签名的应用hap包和Provision profile模板文件 -4. 使用文本编辑器编辑auto_sign.conf,补全配置文件中的配置 -5. Linux运行start_create.sh、Windows运行start_create.bat生成签名所需文件 -6. Linux运行start_sign.sh、Windows运行start_sign.bat对hap包进行签名 - -**** -#### (附)命令说明: -##### 生成密钥对 -* generate-keypair : 生成密钥对 - * -keyAlias : 密钥别名,必填项; - * -keyPwd : 密钥口令,可选项; - * -keyAlg : 密钥算法,必填项,包括RSA/ECC; - * -keySize : 密钥长度,必填项,RSA算法的长度为2048/3072/4096,ECC算法的长度NIST-P-256/NIST-P-384; - * -keystoreFile : 密钥库文件,必填项,JKS或P12格式; - * -keystorePwd : 密钥库口令,可选项; - -##### 生成证书签名请求 -* generate-csr : 生成证书签名请求 - * -keyAlias : 密钥别名,必填项; - * -keyPwd : 密钥口令,可选项; - * -subject : 证书主题,必填项; - * -signAlg : 签名算法,必填项,包括SHA256withRSA / SHA384withRSA / SHA256withECDSA / SHA384withECDSA; - * -keystoreFile : 密钥库文件,必填项,JKS或P12格式; - * -keystorePwd : 密钥库口令,可选项; - * -outFile : 输出文件,可选项,如果不填,则直接输出到控制台; - -##### 生成根CA/子CA证书 -* generate-ca : 生成根CA/子CA证书,如果密钥不存在,一起生成密钥 - * -keyAlias : 密钥别名,必填项; - * -keyPwd : 密钥口令,可选项; - * -keyAlg : 密钥算法,必填项,包括RSA/ECC; - * -keySize : 密钥长度,必填项,RSA算法的长度为2048/3072/4096,ECC算法的长度NIST-P-256/NIST-P-384; - * -issuer : 颁发者的主题,可选项,如果不填,表示根CA - * -issuerKeyAlias : 颁发者的密钥别名,可选项,如果不填,表示根CA; - * -issuerKeyPwd : 颁发者的密钥口令,可选项 - * -subject : 证书主题,必填项; - * -validity : 证书有效期,可选项,默认为3650天; - * -signAlg : 签名算法,必填项,包括SHA256withRSA / SHA384withRSA / SHA256withECDSA / SHA384withECDSA; - * -basicConstraintsPathLen : 路径长度,可选项,默认为0; - * -keystoreFile : 密钥库文件,必填项,JKS或P12格式; - * -keystorePwd : 密钥库口令,可选项; - * -outFile : 输出证书文件,可选项,如果不填,则直接输出到控制台; - -##### 生成应用调试/发布证书 -* generate-app-cert : 生成应用调试/发布证书 - * -keyAlias : 密钥别名,必填项; - * -keyPwd : 密钥口令,可选项; - * -issuer : 颁发者的主题,必填项; - * -issuerKeyAlias : 颁发者的密钥别名,必填项; - * -issuerKeyPwd : 颁发者的密钥口令,可选项; - * -subject : 证书主题,必填项; - * -validity : 证书有效期,可选项,默认为1095天; - * -signAlg : 签名算法,必填项,包括SHA256withECDSA / SHA384withECDSA; - * -keystoreFile : 密钥库文件,必填项,JKS或P12格式; - * -keystorePwd : 密钥库口令,可选项; - * -outForm: 输出证书文件的格式,包括 cert / certChain,可选项,默认为certChain; - * -rootCaCertFile: outForm为certChain时必填,根CA证书文件; - * -subCaCertFile: outForm为certChain时必填,二级子CA证书文件; - * -outFile : 输出证书文件(证书或证书链),可选项,如果不填,则直接输出到控制台; - -##### 生成应用调试/发布证书 -* generate-profile-cert : 生成profile调试/发布证书 - * -keyAlias : 密钥别名,必填项; - * -keyPwd : 密钥口令,可选项; - * -issuer : 颁发者的主题,必填项; - * -issuerKeyAlias : 颁发者的密钥别名,必填项; - * -issuerKeyPwd : 颁发者的密钥口令,可选项; - * -subject : 证书主题,必填项; - * -validity : 证书有效期,可选项,默认为1095天; - * -signAlg : 签名算法,必填项,包括SHA256withECDSA / SHA384withECDSA; - * -keystoreFile : 密钥库文件,必填项,JKS或P12格式; - * -keystorePwd : 密钥库口令,可选项; - * -outForm: 输出证书文件的格式,包括 cert / certChain,可选项,默认为certChain; - * -rootCaCertFile: outForm为certChain时必填,根CA证书文件; - * -subCaCertFile: outForm为certChain时必填,二级子CA证书文件; - * -outFile : 输出证书文件(证书或证书链),可选项,如果不填,则直接输出到控制台; - -##### 通用证书生成,可以生成自定义证书 -* generate-cert : 通用证书生成,可以生成自定义证书 - * -keyAlias : 密钥别名,必填项; - * -keyPwd : 密钥口令,可选项; - * -issuer : 颁发者的主题,必填项; - * -issuerKeyAlias : 颁发者的密钥别名,必填项; - * -issuerKeyPwd : 颁发者的密钥口令,可选项; - * -subject : 证书主题,必填项; - * -validity : 证书有效期,可选项,默认为1095天; - * -keyUsage : 密钥用法,必选项,包括digitalSignature, nonRepudiation, keyEncipherment, dataEncipherment, keyAgreement, certificateSignature, crlSignature, encipherOnly和decipherOnly,如果证书包括多个密钥用法,用逗号分隔; - * -keyUsageCritical : keyUsage是否为关键项,可选项,默认为是; - * -extKeyUsage : 扩展密钥用法,可选项,包括clientAuthentication,serverAuthentication,codeSignature,emailProtection,smartCardLogin,timestamp,ocspSignature; - * -extKeyUsageCritical : extKeyUsage是否为关键项,可选项,默认为否; - * -signAlg : 签名算法,必填项,包括SHA256withRSA / SHA384withRSA / SHA256withECDSA / SHA384withECDSA; - * -basicConstraints : 是否包含basicConstraints,可选项,默认为否; - * -basicConstraintsCritical : basicConstraints是否包含为关键项,可选项,默认为否; - * -basicConstraintsCa : 是否为CA,可选项,默认为否; - * -basicConstraintsPathLen : 路径长度,可选项,默认为0; - * -keystoreFile : 密钥库文件,必填项,JKS或P12格式; - * -keystorePwd : 密钥库口令,可选项; - * -outFile : 输出证书文件,可选项,如果不填,则直接输出到控制台; - -##### ProvisionProfile文件签名 -* sign-profile : ProvisionProfile文件签名 - * -mode : 签名模式,必填项,包括localSign,remoteSign; - * -keyAlias : 密钥别名,必填项; - * -keyPwd : 密钥口令,可选项; - * -profileCertFile : Profile签名证书(证书链,顺序为三级-二级-根),必填项; - * -inFile : 输入的原始Provision Profile文件,必填项; - * -signAlg : 签名算法,必填项,包括SHA256withECDSA / SHA384withECDSA; - * -keystoreFile : 密钥库文件,localSign模式时为必填项,JKS或P12格式; - * -keystorePwd : 密钥库口令,可选项; - * -outFile : 输出签名后的Provision Profile文件,p7b格式,必填项; - -##### ProvisionProfile文件验签 -* verify-profile : ProvisionProfile文件验签 - * -inFile:已签名的Provision Profile文件,p7b格式,必填项; - * -outFile:验证结果文件(包含验证结果和profile内容),json格式,可选项;如果不填,则直接输出到控制台; - -##### hap应用包签名 -* sign-app : hap应用包签名 - * -mode:签名模式,必填项,包括localSign,remoteSign,remoteResign; - * -keyAlias:密钥别名,必填项; - * -keyPwd:密钥口令,可选项; - * -appCertFile:应用签名证书文件(证书链,顺序为三级-二级-根),必填项; - * -profileFile:签名后的Provision Profile文件名,p7b格式,必填项; - * -profileSigned:指示profile文件是否带有签名,1表示有签名,0表示没有签名,默认为1。可选项; - * -inForm:输入的原始文件的格式,zip格式或bin格式,默认zip格式;可选项; - * -inFile:输入的原始APP包文件,hap格式或bin格式,必填项; - * -signAlg:签名算法,必填项,包括SHA256withECDSA / SHA384withECDSA; - * -keystoreFile:密钥库文件,localSign模式时为必填项,JKS或P12格式; - * -keystorePwd: 密钥库口令,可选项; - * -outFile: 输出签名后的包文件,必填项; - -##### hap应用包文件验签 -* verify-app : hap应用包文件验签 - * -inFile:已签名的应用包文件,hap格式或bin格式,必填项; - * -outCertchain:签名的证书链文件,必填项; - * -outProfile:应用包中的profile文件,必填项; diff --git a/tools/commands.config b/tools/commands.config index 8a42cc9d..2a996509 100644 --- a/tools/commands.config +++ b/tools/commands.config @@ -1,422 +1,422 @@ { 'generate-keypair': [ - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyPwd 123456 -keyAlg ECC -keySize NIST-P-384 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias -keyPwd 123456 -keyAlgRSA -keySize 2048 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg RSA -keySize 4096 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyAlg RSA -keySize 3072 -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd -keyAlg ECC -keySize NIST-P-256 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keySize NIST-P-256 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg -keySize NIST-P-256 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg AES -keySize NIST-P-256 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize 2789 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.p12" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyPwd 123456 -keyAlg ECC -keySize NIST-P-384 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyAlias -keyPwd 123456 -keyAlgRSA -keySize 2048 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg RSA -keySize 4096 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyAlg RSA -keySize 3072 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg AES -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize 2789 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 keystoreFile -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "D:\\OH\\ohtest.pji89" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "D:\\OH\\ohtest.jks" -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 90(0——+) -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 ', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "' + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.pji89" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.jks" -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd 90(0——+) -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd 123456 ', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "' ], 'generate-csr': [ - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\oh-app1-key-v1.csr"', - 'generate-csr -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-csr -keyAlias -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-csr -keyAlias "oh-app11-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA384withRSA -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\oh-app1-key-v1.csr"', - 'generate-csr -keyAlias "oh-app1-key-v1" -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd (+9) -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA384withECDSA -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\oh-app1-key-v1.csr"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 - signAlg SHA256withRSA -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject " -signAlg SHA256withRSA -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community" -signAlg SHA256withRSA -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA384withECDSA -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\oh-app1-key-v1.csr"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\oh-app1-key-v1.csr"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA2fff56withRSA -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\oh-app1-key-v1.csr"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "oh-app1-key-v1.csr"', + 'generate-csr -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-csr -keyAlias -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-csr -keyAlias "oh-app11-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA384withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "oh-app1-key-v1.csr"', + 'generate-csr -keyAlias "oh-app1-key-v1" -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd (+9) -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "oh-app1-key-v1.csr"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 - signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject " -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community" -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "oh-app1-key-v1.csr"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "oh-app1-key-v1.csr"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA2fff56withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "oh-app1-key-v1.csr"', 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystorePwd 123456 -extCfgFile "111.txt"', 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "D:\\OH\\ohtest.j999ks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA384withRSA -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\oh-app1-key-v1.csr"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "D:\\OH\\ohtest.jks" -extCfgFile "111.txt"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd -extCfgFile "111.txt"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd ()——90 -extCfgFile "111.txt"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA384withRSA -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\oh-app1-key-v1.csr"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA384withRSA -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\oh-app1-key-v1.csr"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA384withRSA -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile ', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA384withRSA -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\oh-app1-key-v1.cs666r"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA384withRSA -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\oh-app1-key-v1.csr"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 ', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "' - ], - 'generate-cert': [ - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd8——+ -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias “”777ew89qb&&#$“” -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd)-==== -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity *-~45 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignaturenonRepudiation -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature/nonRepudiation -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical 89898 -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256652withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints 90-* -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen () -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.cer" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd sahla90 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.ce7778r" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" ', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app1.cer" -extCfgFile"' + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "ohtest.j999ks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA384withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "oh-app1-key-v1.csr"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -extCfgFile "111.txt"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd -extCfgFile "111.txt"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd ()——90 -extCfgFile "111.txt"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA384withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "oh-app1-key-v1.csr"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA384withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "oh-app1-key-v1.csr"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA384withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile ', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA384withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "oh-app1-key-v1.cs666r"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA384withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "oh-app1-key-v1.csr"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 ', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "' ], 'generate-ca': [ - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-root-ca.cer"', - 'generate-ca -keyAlias -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-root-ca.cer"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-app-root-ca-key-v1" -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-root-ca.cer"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-root-ca.cer"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd (9+) -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-root-ca.cer"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-app-root-ca-key-v1" -keyPwd 123456 -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-root-ca.cer"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-root-ca.cer"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ADC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-root-ca.cer"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-app-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-app-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-app-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize 2048 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-app-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-app-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject " -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-app-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-root-ca.cer"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-root-ca.cer"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-app-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-app-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-app-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA2566666withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-root-ca.cer"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-root-ca.cer"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen &*&* -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-root-ca.cer"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-app-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-app-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystorePwd 123456 -keystoreFile -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-app-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystorePwd 123456 -keystoreFile "D:\\OH\\ohtest.jkiii666s" -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -extCfgFile "111.txt" -outFile "D:\\OH\\app-root-ca.cer"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd -extCfgFile "111.txt" -outFile "D:\\OH\\app-root-ca.cer"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd (9+) -extCfgFile "111.txt" -outFile "D:\\OH\\app-root-ca.cer"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-root-ca.cer"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile ', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile “ooo90”"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app-root-ca.cer"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile -outFile "D:\\OH\\app-root-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "@#¥%&" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd "@#$%&" -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg AES -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize 2048 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root111 CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=789 CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-sub-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "@#$%&" -issuerKeyPwd 10996 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity**() -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHAwithECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen OK0 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.cer" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd "@#$%&" -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" ', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "@#$%&"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -outFile "D:\\OH\\app-sign-srv-ca.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "D:\\OH\\ohtest.jks" -keystorePwd 123456 -extCfgFile -outFile "D:\\OH\\app-sign-srv-ca.cer"' + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-ca -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', + 'generate-ca -keyAlias -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd (9+) -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ADC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize 2048 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject " -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA2566666withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen &*&* -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystorePwd 123456 -keystoreFile -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystorePwd 123456 -keystoreFile "ohtest.jkiii666s" -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -extCfgFile "111.txt" -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd -extCfgFile "111.txt" -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd (9+) -extCfgFile "111.txt" -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile ', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile “ooo90”"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "@#¥%&" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd "@#$%&" -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg AES -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize 2048 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root111 CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=789 CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "@#$%&" -issuerKeyPwd 10996 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "CN=Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity**() -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHAwithECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen OK0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.cer" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd "@#$%&" -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" ', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "@#$%&"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app-sign-srv-ca1.cer"', + 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile -outFile "app-sign-srv-ca1.cer"', ], + 'generate-cert': [ + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd8——+ -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias “”777ew89qb&&#$“” -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd)-==== -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity *-~45 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignaturenonRepudiation -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature/nonRepudiation -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical 89898 -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256652withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints 90-* -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen () -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.cer" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd sahla90 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.ce7778r" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" ', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile"' + ], 'generate-app-cert': [ - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "@#$%&" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd "@#$%&" -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community " -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"rrr"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity abcd -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256652withRSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony, OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "@#$%&" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd "@#$%&" -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"rrr"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity abcd -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256652withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.cer" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.tx', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd "@#$%&" -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm cert0 -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.jks" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.jks" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "@#$%&" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "' + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.cer" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.tx', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd "@#$%&" -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm cert0 -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.jks" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.jks" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "@#$%&" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "' ], 'generate-profile-cert': [ - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "@#$%&" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd "@#$%&" -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community " -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"rrr"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity abcd -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256652withRSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.cer" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.tx', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd "@#$%&" -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm cert0 -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.jks" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.jks" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "@#$%&" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem"', - 'generate-profile-cert -keyAlias "oh-profile1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "D:\\OH\\ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "' + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "@#$%&" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd "@#$%&" -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community " -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"rrr"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity abcd -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256652withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.cer" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.tx', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd "@#$%&" -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm cert0 -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.jks" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.jks" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "@#$%&" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "' ], 'sign-profile': [ - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', - 'sign-profile -mode -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', - 'sign-profile -mode local -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -profileCertFile "profile-release1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', - 'sign-profile -mode localSign -keyAlias -profileCertFile "profile-release1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', - 'sign-profile -mode localSign -keyAlias "@#$%&" -profileCertFile "profile-release1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd "@#$%&" -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', + 'sign-profile -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', + 'sign-profile -mode -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', + 'sign-profile -mode local -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', + 'sign-profile -mode localSign -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', + 'sign-profile -mode localSign -keyAlias -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', + 'sign-profile -mode localSign -keyAlias "@#$%&" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd "@#$%&" -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.jks" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.cert" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -inFile -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -inFile "profile" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -inFile "profile.json" -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -inFile "profile.json" -signAlg -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -inFile "profile.json" -signAlg SHA3842356withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.cer" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd "@#$%&" -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 000000 -outFile "app1-profile1.p7b" -keyPwd 111111 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.jks" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 ', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "' + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.jks" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.cert" -keyPwd 123456 -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA3842356withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.cer" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd "@#$%&" -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 000000 -outFile "app1-profile1.p7b" -keyPwd 111111 -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -keyPwd 123456 -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile -keyPwd 123456 -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.jks" -keyPwd 123456 -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 ', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "' ], 'verify-profile': [ 'verify-profile -inFile "app1-profile1.p7b" -outFile "verify-result.json"', @@ -429,4 +429,4 @@ 'verify-profile -inFile "app1-profile1.p7b" -outFile', 'verify-profile -inFile "app1-profile1.p7b" -outFile "verify-result.js00on"' ] -} \ No newline at end of file +} -- Gitee From dac8c386b598fcf1dc5f0c50844637c959489a8e Mon Sep 17 00:00:00 2001 From: zhanzeyi Date: Fri, 21 Jan 2022 09:13:13 +0800 Subject: [PATCH 3/3] Motify test case and autotest file. Signed-off-by: zhanzeyi --- tools/auto_test.py | 39 ++- tools/commands.config | 757 ++++++++++++++++++------------------------ 2 files changed, 364 insertions(+), 432 deletions(-) diff --git a/tools/auto_test.py b/tools/auto_test.py index e9770036..a5054dd6 100644 --- a/tools/auto_test.py +++ b/tools/auto_test.py @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. ############################################## - +import json import os.path import random import sys @@ -280,6 +280,9 @@ def run_target(case, cmd): command = Popen(cmd, stdout=PIPE, stderr=PIPE, stdin=PIPE, shell=True) + + + out = command.stdout.readlines() with open("log.txt", mode='a+', encoding='utf-8') as f: if len(out) > 0: @@ -292,7 +295,6 @@ def run_target(case, cmd): with open("error.txt", mode='a+', encoding='utf-8') as f: if len(error) > 0: f.writelines(cmd + "\r\n") - for line in error: success = False f.writelines(str(line.strip()) + "\r\n") @@ -326,11 +328,34 @@ def run_test_case(case, jar_file): print("Not found test case: {}".format(case)) exit(0) + + for k in test_case: cmd = 'java -jar {} {}'.format(jar_file, k) print("== Run command: {}".format(cmd)) result = run_target(case, cmd) - print("== Done command: {}".format(result)) + + with open('test_result.log', 'r', encoding='utf-8') as f: + content = f.read() + test_result_dict = ast.literal_eval(content) + + + if case == 'case-assert-true': + if result: + print("== Done command: Expected True and tested True") + else: + test_result_dict['commands_expected_True_but_tested_False'].append(cmd) + print("== Done command: Expected True but tested False") + else: + if result: + test_result_dict['commands_expected_False_but_tested_True'].append(cmd) + print("== Done command: Expected False but tested True") + else: + print("== Done command: Expected False and tested False") + + + with open("test_result.log", mode='w', encoding='utf-8') as tr: + tr.write(json.dumps(test_result_dict, indent=4)) def random_str(): @@ -392,6 +417,8 @@ def prepare_env(): target_file = os.path.join(test_dir, key_file) if os.path.exists(target_file): os.remove(target_file) + if os.path.exists(key_file): + os.remove(key_file) def process_cmd(args): @@ -444,6 +471,12 @@ def process_cmd(args): run_simple_case(s_scope, jar_file) elif run_scope == 'runtest': prepare_env() + with open("test_result.log", mode='w', encoding='utf-8') as file_result: + result_dict = { + 'commands_expected_True_but_tested_False': [], + 'commands_expected_False_but_tested_True': [] + } + file_result.write(str(result_dict)) for t_scope, _ in test_scope.items(): run_test_case(t_scope, jar_file) else: diff --git a/tools/commands.config b/tools/commands.config index 2a996509..a24fa735 100644 --- a/tools/commands.config +++ b/tools/commands.config @@ -1,432 +1,331 @@ { - 'generate-keypair': [ - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.p12" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyPwd 123456 -keyAlg ECC -keySize NIST-P-384 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias -keyPwd 123456 -keyAlgRSA -keySize 2048 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg RSA -keySize 4096 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyAlg RSA -keySize 3072 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg AES -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize 2789 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.pji89" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.jks" -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd 90(0——+) -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd 123456 ', - 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "' + 'case-assert-true': [ + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-什么key-v1" -keyPwd 123456 -keyAlg RSA -keySize 3072 -keystoreFile "ohtest.p12" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app2-key-v1" -keyAlg RSA -keySize 3072 -keystoreFile "ohtest.p12" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.p12" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "oh-app1-key-v1.csr"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA384withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "oh-app1-key-v1.csr"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "oh-app1-key-v1.csr"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community" -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "oh-app1-key-v1.csr"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA384withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA384withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.p12" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-app-啥呀sign-……%%%#srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity SE34三 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "@#¥%&" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root111 CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=789 CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity**() -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen OK0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "@#$%&"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.p12" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile -outFile "profile-sign-srv-ca.cer"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity *-~45 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical 什么 -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical 89898 -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints 90-* -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical 啊啊啊 -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa *哦0 -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen () -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.ce7778r" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity abcd -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "app-debug1.pem"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity abcd -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "profile-debug1.pem"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', + 'verify-profile -inFile "app1-profile1.p7b" -outFile "verify-result.json"', + 'verify-profile -inFile "app1-profile1.p7b"', + 'verify-profile -inFile "app1-profile1.p7b" -outFile', ], - 'generate-csr': [ - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "oh-app1-key-v1.csr"', - 'generate-csr -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-csr -keyAlias -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-csr -keyAlias "oh-app11-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA384withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "oh-app1-key-v1.csr"', - 'generate-csr -keyAlias "oh-app1-key-v1" -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd (+9) -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "oh-app1-key-v1.csr"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 - signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject " -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community" -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "oh-app1-key-v1.csr"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "oh-app1-key-v1.csr"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA2fff56withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "oh-app1-key-v1.csr"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "ohtest.j999ks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA384withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "oh-app1-key-v1.csr"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -extCfgFile "111.txt"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd -extCfgFile "111.txt"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd ()——90 -extCfgFile "111.txt"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA384withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "oh-app1-key-v1.csr"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA384withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "oh-app1-key-v1.csr"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA384withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile ', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA384withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "oh-app1-key-v1.cs666r"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA384withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "oh-app1-key-v1.csr"', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 ', - 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "' - ], - 'generate-ca': [ - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', - 'generate-ca -keyAlias -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd (9+) -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ADC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize 2048 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject " -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA2566666withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen &*&* -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystorePwd 123456 -keystoreFile -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystorePwd 123456 -keystoreFile "ohtest.jkiii666s" -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -extCfgFile "111.txt" -outFile "root-ca1.cer"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd -extCfgFile "111.txt" -outFile "root-ca1.cer"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd (9+) -extCfgFile "111.txt" -outFile "root-ca1.cer"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile ', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile “ooo90”"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "root-ca1.cer"', - 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile -outFile "root-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "@#¥%&" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd "@#$%&" -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg AES -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize 2048 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root111 CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=789 CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "@#$%&" -issuerKeyPwd 10996 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "CN=Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity**() -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHAwithECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen OK0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.cer" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd "@#$%&" -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" ', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "@#$%&"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app-sign-srv-ca1.cer"', - 'generate-ca -keyAlias "oh-app-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile -outFile "app-sign-srv-ca1.cer"', - ], - 'generate-cert': [ - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd8——+ -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias “”777ew89qb&&#$“” -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd)-==== -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity *-~45 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignaturenonRepudiation -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature/nonRepudiation -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical 89898 -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256652withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints 90-* -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen () -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.cer" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd sahla90 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.ce7778r" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" ', - 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile"' - ], - 'generate-app-cert': [ - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony, OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "@#$%&" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd "@#$%&" -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"rrr"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity abcd -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256652withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.cer" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.tx', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd "@#$%&" -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm cert0 -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.jks" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.jks" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "@#$%&" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem"', - 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "' - ], - 'generate-profile-cert': [ - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "@#$%&" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd "@#$%&" -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community " -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"rrr"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity abcd -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256652withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.cer" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.tx', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd "@#$%&" -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm cert0 -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.jks" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca1.jks" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "@#$%&" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem"', - 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-app-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "app-sign-srv-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "' - ], - 'sign-profile': [ - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', - 'sign-profile -mode -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', - 'sign-profile -mode local -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', - 'sign-profile -mode localSign -keyAlias -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', - 'sign-profile -mode localSign -keyAlias "@#$%&" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd "@#$%&" -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.jks" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.cert" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA3842356withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.cer" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd "@#$%&" -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 000000 -outFile "app1-profile1.p7b" -keyPwd 111111 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.jks" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 ', - 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "' - ], - 'verify-profile': [ - 'verify-profile -inFile "app1-profile1.p7b" -outFile "verify-result.json"', - 'verify-profile -outFile "verify-result.json"', - 'verify-profile -outFile "verify-result.json" -inFile', - 'verify-profile -outFile "verify-result.json" -inFile "app1-profile1.pem"', - 'verify-profile -outFile "verify-result.json" -inFile "app1-profile1.jks"', - 'verify-profile -inFile "app1-profile1.p7b" -outFile "verify-result.json"', - 'verify-profile -inFile "app1-profile1.p7b" ', - 'verify-profile -inFile "app1-profile1.p7b" -outFile', - 'verify-profile -inFile "app1-profile1.p7b" -outFile "verify-result.js00on"' + 'case-assert-false': [ + 'generate-keypair -keyPwd 123456 -keyAlg ECC -keySize NIST-P-384 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyAlias -keyPwd 123456 -keyAlgRSA -keySize 2048 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair ---------keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg RSA -keySize 4096 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd -%什么- -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg AES -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize 2789 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 keystoreFile -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.pji89" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.jks" -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd 90(0——+) -extCfgFile "111.txt"', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd 123456', + 'generate-keypair -keyAlias "oh-app1-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "', + 'generate-csr -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-csr -keyAlias -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-csr -keyAlias "oh-app11-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-csr -keyAlias "oh-app1-key-v1" -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd (+9) -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 - signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject " -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "oh-app1-key-v1.csr"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA2fff56withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "ohtest.j999ks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -extCfgFile "111.txt"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd -extCfgFile "111.txt"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd ()——90 -extCfgFile "111.txt"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA384withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "oh-app1-key-v1.cs666r"', + 'generate-csr -keyAlias "oh-app1-key-v1" -keyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -signAlg SHA256withRSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "', + 'generate-ca -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', + 'generate-ca -keyAlias -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd (9+) -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ADC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize 2048 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject " -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA2566666withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen &*&* -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystorePwd 123456 -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystorePwd 123456 -keystoreFile -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystorePwd 123456 -keystoreFile "ohtest.jkiii666s" -extCfgFile "111.txt"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -extCfgFile "111.txt" -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd -extCfgFile "111.txt" -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd (9+) -extCfgFile "111.txt" -outFile "root-ca1.cer"', + 'generate-ca -keyAlias "oh-root-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Root CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 2 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile “ooo90”"', + 'generate-ca -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd "@#$%&" -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg AES -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize 2048 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-sub-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "@#$%&" -issuerKeyPwd 10996 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 ---signAlg SHAwithECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.cer" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd "@#$%&" -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer"', + 'generate-ca -keyAlias "oh-profile-sign-srv-ca-key-v1" -keyPwd 123456 -keyAlg ECC -keySize NIST-P-256 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Root CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA" -validity 365 -signAlg SHA256withECDSA -basicConstraintsPathLen 1 -keystoreFile "ohtest.jks" -keystorePwd 123456 -extCfgFile "111.txt" -outFile "profile-sign-srv-ca.cer', + 'generate-cert -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "33¥¥¥¥什么&&" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-root-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 8——+ -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias “”777ew89qb&&#$“” -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd )-==== -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256652withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.cer" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd sahla90 -outFile "app1.cer" -extCfgFile "111.txt"', + 'generate-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release" -validity 365 -keyUsage digitalSignature -keyUsageCritical true -extKeyUsage codeSignature -extKeyUsageCritical false -signAlg SHA256withECDSA -basicConstraints false -basicConstraintsCritical false -basicConstraintsCa false -basicConstraintsPathLen 0 -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1.cer" -extCfgFile"', + 'generate-app-cert -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "@#$%&" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd "@#$%&" -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community " -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"rrr"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256652withRSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.cer" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "app-debug1.pem" -extCfgFile "111.tx', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd "@#$%&" -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm cert0 -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -subCaCertFile "profile-sign-srv-ca.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile -subCaCertFile "profile-sign-srv-ca.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.jks" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.jks" -outFile "app-debug1.pem" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "@#$%&" -extCfgFile "111.txt"', + 'generate-app-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=Application Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "app-debug1.pem" -extCfgFile "', + 'generate-profile-cert -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "@#$%&" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd "@#$%&" -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community " -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"rrr"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256652withRSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.cer" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "profile-debug1.pem" -extCfgFile "111.tx', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd "@#$%&" -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm cert0 -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -subCaCertFile "profile-sign-srv-ca.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile -subCaCertFile "profile-sign-srv-ca.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.jks" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.jks" -outFile "profile-debug1.pem" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "@#$%&" -extCfgFile "111.txt"', + 'generate-profile-cert -keyAlias "oh-app1-key-v1" -keyPwd 123456 -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profilelication Signature Service CA" -issuerKeyAlias "oh-profile-sign-srv-ca-key-v1" -issuerKeyPwd 123456 -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=profile1 Debug" -validity 365 -signAlg SHA256withECDSA -keystoreFile "ohtest.p12" -keystorePwd 123456 -outForm certChain -rootCaCertFile "root-ca1.cer" -subCaCertFile "profile-sign-srv-ca.cer" -outFile "profile-debug1.pem" -extCfgFile "', + 'sign-profile -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', + 'sign-profile -mode -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', + 'sign-profile -mode local -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456"', + 'sign-profile -mode localSign -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', + 'sign-profile -mode localSign -keyAlias -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', + 'sign-profile -mode localSign -keyAlias "@#$%&" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd "@#$%&" -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-release1.jks" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.cert" -keyPwd 123456 -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA3842356withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.cer" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd "@#$%&" -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 000000 -outFile "app1-profile1.p7b" -keyPwd 111111 -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -keyPwd 123456 -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile -keyPwd 123456 -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.jks" -keyPwd 123456 -extCfgFile "111.txt"', + 'sign-profile -mode localSign -keyAlias "oh-app1-key-v1" -profileCertFile "profile-debug1.pem" -inFile "profile.json" -signAlg SHA384withECDSA -keystoreFile "ohtest.jks" -keystorePwd 123456 -outFile "app1-profile1.p7b" -keyPwd 123456 -extCfgFile "', + 'verify-profile -outFile "verify-result.json"', + 'verify-profile -outFile "verify-result.json" -inFile', + 'verify-profile -outFile "verify-result.json" -inFile "app1-profile1.pem"', + 'verify-profile -outFile "verify-result.json" -inFile "app1-profile1.jks"', + 'verify-profile -inFile "app1-profile1.p7b" -outFile "verify-result.js00on"', ] -} +} \ No newline at end of file -- Gitee