Introduction to 3D Secure

* *3D secure (Secure Code or Verified by Visa), is all about call back protection and making sure card holders are who they say they are. The Illustration and process that follows, shows 3D secure in use as implemented by Merchants using iVeri Enterprise and not iVeri Lite. Illustrating the process in this way, helps to show how each entity is involved even if certain functions are performed on behalf of Merchants using iVeri Lite.

** * Payment Features * ** Depending on the acquirer involved, iVeri Lite has the capacity to offer the following * payment methods * : Card: VISA MasterCard AMEX Diners UPI Mobile Money EcoCash M-Pesa Additional payment methods: MasterPass Visa Checkout Visa Account Funding Transactions Mastercard Funding Transactions Account-to-Account Transfer: Ozow *Other functionalities available:* *3DSecure: *iVeri Lite, being an e-commerce product, allows for 3DSecure protocol for payer authentication in online transactions, if configured accordingly. To learn more about 3D Secure, visit None [1] this page . *Fraud Management* *Transaction history reporting* *Merchant Portal - BackOffice*: Merchant Portal includes features that are merchant-specific such as reporting, payment pa

V4.136 12/11/2023 Hosted

V4.136 12/11/2023 Hosted * ** Hosted Gateway: * Date: 12/11/2023 Start Time: 20:00 UCT +2 Duration: 2-4hrs Expected Downtime: 5-10mins. Release Notes Overview * The release notes provided in this document serve as an initial preview of the changes expected in the upcoming production release scheduled for November 12th 2023, on the Hosted Gateway . Summary * * The Gateway release notes will contain information related to the new iVeri software release. The release notes will include the impact of software release to the intended target audience. / The release notes will adopt the format outlined below, as applicable:*/ Compliance - *Refers to the adherence of the software to specific industry standards, regulations, or internal policies. This includes ensuring that the software meets legal

Admin Portal

Admin Portal * **

Cardinal Posport IndiGo

Cardinal Posport IndiGo * ** The release notes contained in this document are available in iVeri’ s repository in production and can be installed on any Cardinal and or indigo installation on a case-by-case bases as agreed with Customers and or Integrators.

Merchant Hash Token Generation

Then merchant token generation is a security measure introduced to hash merchant and transaction specific data elements, using SHA256 hashing algorithm. An effort which reduces the risk of data being exposed or intercepted by 3rd parties during the submission of transaction requests to the gateway.

Network Topology

Network Topology** The generic solution is premised on the following network topologies and depends on whether or not the Indigo Server and/or the POS Server, if it exists, are located inside or outside of the merchant’s location. At the point that a payment by the customer must be made the POS Till or POS Server will, using the protocol described in this document, contact the Indigo Server which will control the appropriate device to prompt for payment from the cardholder. Once the required card details have been collected on the device the Indigo server will process the transaction to the iVeri Gateway before returning a response to the POS Till or POS Server which will then be able to close the invoice created and indicate to the cashier at the POS Till that the invoice has been paid. I

NewPos Release Notes V1.0.20230929

Release Notes - NewPos Android 9200 * The release notes are available to CBZ NewPos Android 9200 device. What’s New * Zimra* Support of Zimra transactions on the 9200 introduced. Functionality added is a replication of what is currently supported in the NewPos 7210. Enhancements * Receipts* The receipt print timer has been increased to 2.5 Seconds. A “red cross” badge will be displayed before printing a failed transaction receipt. A “green tick” badge will be displayed before printing an approved transaction receipt.

Merchant Hash Token Generation

Merchant Hash Token Generation * ** /* *secretKey - Lite Shared Secret *resource - /Lite/Authorise.aspx *applicationId - {435407B0-8A28-4152-9649-A932423F72EB} *amount - Lite_Order_Amount *emailAddress - Ecom_BillTo_Email */ public static string GenerateTransactionToken(string secretKey, string resource, string applicationId, string amount, string emailAddress) { string time = Convert.ToString(UnixTimeStampUTC()); string token = secretKey + time + resource + applicationId + amount + emailAddress; return String.Concat(time, ":" + GetHashSha256(token)); } public static Int32 UnixTimeStampUTC() { Int32 unixTimeStamp; DateTime currentTime = DateTime.Now; DateTime zuluTime = currentTime.ToUniversalTime(); DateTime unixEpoch = new DateTime(1970, 1, 1); unixTimeStamp = (Int32)(zuluTime.Subtract(u