diff --git a/zh-cn/application-dev/security/huks-guidelines.md b/zh-cn/application-dev/security/huks-guidelines.md index a582694477a7f5966f7292f53d1168a6c092bc85..a5bfc0c902611bdf1e66bf90a03725e4dc6f3216 100644 --- a/zh-cn/application-dev/security/huks-guidelines.md +++ b/zh-cn/application-dev/security/huks-guidelines.md @@ -868,24 +868,6 @@ struct Index { Text('加密或解密的结果').fontSize(20).margin({ left: 2, top: 10 }) } - Row() { - TextInput({ placeholder: '这里将会显示加解密的结果', controller: this.controller }) - .placeholderColor(Color.Grey) - .placeholderFont({ size: 14, weight: 400 }) - .caretColor(Color.Blue) - .width(400) - .height(40) - .margin(20) - .fontSize(14) - .fontColor(Color.Black) - .type(InputType.Normal) - .onChange((value: string) => { - this.message += '您输入得明文是: ' + value + '\n' - plainText = value - }) - .margin({ top: 10 }) - } - Row() { Button({ type: ButtonType.Normal, stateEffect: true }) { Text('generateAesKey')