From aaf2831f0771a4c9bb3c8ce9e8f6617854a0d4db Mon Sep 17 00:00:00 2001 From: lichaochen Date: Fri, 1 Aug 2025 16:19:11 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=AF=E9=80=89=E5=8F=82=E6=95=B0=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0[]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: lichaochen --- api/@ohos.security.cert.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/@ohos.security.cert.d.ts b/api/@ohos.security.cert.d.ts index 0e13a7af5c..305673983b 100644 --- a/api/@ohos.security.cert.d.ts +++ b/api/@ohos.security.cert.d.ts @@ -6184,7 +6184,7 @@ declare namespace cert { * Used to obtain the CMS final data, such as CMS signed data. * * @param { Uint8Array } data - the content data for CMS operation. - * @param { CmsGeneratorOptions } options - the configuration options for CMS operation. + * @param { CmsGeneratorOptions } [options] - the configuration options for CMS operation. * @returns { Promise } the promise returned by the function. * @throws { BusinessError } 401 - invalid parameters. Possible causes: 1. Mandatory parameters are left unspecified; *
2. Incorrect parameter types; 3. Parameter verification failed. @@ -6202,7 +6202,7 @@ declare namespace cert { * Used to obtain the CMS final data, such as CMS signed data. * * @param { Uint8Array } data - the content data for CMS operation. - * @param { CmsGeneratorOptions } options - the configuration options for CMS operation. + * @param { CmsGeneratorOptions } [options] - the configuration options for CMS operation. * @returns { Uint8Array | string } the CMS final data. * @throws { BusinessError } 401 - invalid parameters. Possible causes: 1. Mandatory parameters are left unspecified; *
2. Incorrect parameter types; 3. Parameter verification failed. -- Gitee