- 23 Oct 2024
- 1 Minute to read
- DarkLight
- PDF
Action
- Updated on 23 Oct 2024
- 1 Minute to read
- DarkLight
- PDF
<!-- OTP generation with the first crypto application -->
<Action id="ro"cryptoAppIndex="1" generateResponseWithScore="false"actionTrigger="button">
<OutputData displayed="true"responsePattern="XX-XX-XX" hostCodePattern="XX-XX-XX"centered="true" />
<View title="OTP">
<MenuItem value="OTP"icon="otp.png" />
<Labels>
<Label id="ResultResponse"value="My OTP:" />
</Labels>
</View>
</Action>
<!-- Data signing with the second crypto application + data input done via QR code -->
<Action id="sg"cryptoAppIndex="2" actionTrigger="both">
<InputData inputType="image"imageFormat="all" />
<OutputData displayed="true"timeout="30" centered="true" />"
<View title="Signature">
<MenuItem value="Signature"icon="signature.png" />
<Fields>
<Field id="DataField1"name="Source account"comment="Enter the source account." />
<Field id="DataField2"name="Destination account"comment="Enter the destination account." />
<Field id="DataField3"name="Amount to transfer"comment="Enter the amount to transfer." />
</Fields>
</View>
</Action>
<!-- OTP generation with Web browsing and without displaying the OTP -->
<Action id="ebank"cryptoAppIndex="1">
<InputData inputType="manual" />
<OutputData displayed="false">
<URLvalue="http://MY_DOMAIN_NAME/...?serial=%_ SerialNumber_%&otp=%_OTP_%" />
</OutputData >
<View title="E-Banking">
<MenuItem value="E-Banking"icon="ebanking.png" />
</View>
</Action>
<!-- Web browsing only -->
<Action id="promo">
<OutputData >
<URLvalue="http://MY_DOMAIN_NAME/..." />
</OutputData >
<View title="promo">
<MenuItem value="Promo"icon="news.png" />
</View>
</Action>