From ea988f73e7f170e687fad4abffb6e6a44a6d7589 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E6=A2=A6=E9=BE=99?= Date: Thu, 20 Nov 2025 03:31:28 +0000 Subject: [PATCH] update CryptoArchitectureKit/entry/src/main/ets/pages/PublicKeysStored.ets. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 杨梦龙 --- .../entry/src/main/ets/pages/PublicKeysStored.ets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CryptoArchitectureKit/entry/src/main/ets/pages/PublicKeysStored.ets b/CryptoArchitectureKit/entry/src/main/ets/pages/PublicKeysStored.ets index f0ac58f..e088d0b 100644 --- a/CryptoArchitectureKit/entry/src/main/ets/pages/PublicKeysStored.ets +++ b/CryptoArchitectureKit/entry/src/main/ets/pages/PublicKeysStored.ets @@ -27,7 +27,7 @@ struct PublicKeysStored { build() { Row() { Column() { - Button('公钥转为base64进制数据存储').onClick(() => { + Button('公钥转为base64编码数据存储').onClick(() => { let publicKeys = new Uint8Array([ 0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02, 0x01, 0x06, 0x08, 0x2a, -- Gitee