<import-sjs from="./rsa.prop.sjs" name="p" />
  <view class="page  {{className || ''}}">
    <view class="_page-section_19pe7_7">
      <view class="_page-section-title_19pe7_17">输入：</view>
      <view class="page-section-demo">
        <textarea
          maxlength="500"
          anyuiProps="{{p.getProps('_2') || {}}}"
          onInput="onInput"
          value="{{inputValue}}"
        />
      </view>
      <view class="_page-section-title_19pe7_17">输出：</view>
      <view class="page-section-demo">
        <textarea
          maxlength="500"
          anyuiProps="{{p.getProps('_3') || {}}}"
          value="{{outputValue}}"
        />
      </view>
    </view>
    <view class="_page-section_19pe7_7">
      <view class="_page-section-btns_19pe7_7">
        <button
          class="_page-section-btn_19pe7_7"
          type="primary"
          onTap="onEncrypt"
        >
          加密
        </button>
        <button
          class="_page-section-btn_19pe7_7"
          type="primary"
          onTap="onDecrypt"
        >
          解密
        </button>
      </view>
    </view>
  </view>
