- 19 Oct 2024
- 1 Minute à lire
- SombreLumière
Integrate signing data fields
- Mis à jour le 19 Oct 2024
- 1 Minute à lire
- SombreLumière
Mobile Authenticator Studio supports receiving data to sign from:
QR codes and Cronto images
The user interface
To sign data fields formatted under a QR code, the QR code content must be based on the following format:
<QRCode>
<DTF1>DATA_TO_SIGN_1</DTF1>
<DTF2>DATA_TO_SIGN_2</DTF2>
<DTF3>DATA_TO_SIGN_3</DTF3>
<DTF4>DATA_TO_SIGN_4</DTF4>
<DTF5>DATA_TO_SIGN_5</DTF5>
<DTF6>DATA_TO_SIGN_6</DTF6>
<DTF7>DATA_TO_SIGN_7</DTF7>
<DTF8>DATA_TO_SIGN_8</DTF8>
</QRCode>
The content of the QR code can be generated by the Secure Messaging SDK 4.3.2 or later by calling the signature transaction message body generation functionality version 1:
Java
publicstatic String generateSignatureTransactionMessageBodyV1(String[] dataFields) throws MessageSDKException
.NET
publicstatic String GenerateSignatureTransactionMessageBodyV1(String[] dataFields)
The QR code can be generated by the Image Generator SDK 4.3.2 or later by calling the QR code generation API:
Java
publicstatic BWQRCodeResponse generateBWQRCode(int imageSize, String inputValue, int errorCorrectionLevel) throws ImageGeneratorException
.NET
publicstatic BWQRCodeResponse GenerateBWQRCode(int imageSize, String inputValue, int errorCorrectionLevel)