Use a computer

For full performance and fluidity, please open Pay Engineers on a desktop or laptop. On mobile, the experience is limited — especially authenticated sections and advanced tools after login.

Security

Security mechanisms for payment platforms, covering how sensitive data is protected at rest and in transit, how access is controlled, and how anomalies are detected and investigated. These controls form the technical backbone that PCI DSS and other compliance frameworks ultimately audit against.

Use in configurator

Encryption

Encrypting sensitive data both at rest, across databases, backups and object storage, and in transit via TLS on every network hop, is the baseline control underpinning nearly every other security and compliance requirement a payment platform must satisfy. Without solid encryption practices, no amount of access control or monitoring fully compensates for data that is readable the moment it is intercepted or exfiltrated.

Advantages

Directly protects the confidentiality of card data, PII and credentials even if other controls fail or storage is exfiltrated; a well-understood, mature control with strong library and platform support across every major stack; a foundational requirement for essentially every compliance framework such as PCI DSS and GDPR that a payment platform must satisfy.

Limitations

Effective encryption is only as strong as the key management practices behind it, and poor key handling undermines even correctly implemented encryption; adds computational overhead that must be accounted for in high-throughput paths, though modern hardware acceleration minimizes this in practice; requires ongoing algorithm and protocol version hygiene as older standards are deprecated.

Use cases

Protecting PAN, PII and credentials at rest; securing all internal and external network traffic in transit; encrypting backups and archival data.

Tokenization

Tokenization replaces sensitive card or account data with a non-sensitive, format-preserving token that can be used throughout the platform for business logic such as recurring billing and refunds without ever exposing the underlying sensitive value outside of a tightly controlled token vault. This is one of the most effective ways to shrink the scope of systems that need full PCI DSS controls applied to them.

Advantages

Dramatically reduces PCI DSS scope by keeping raw card data confined to a small, tightly controlled vault rather than scattered across the platform; tokens can safely flow through logs, analytics and internal systems without exposing sensitive underlying data; supports recurring billing and refunds without needing to re-collect card details.

Limitations

Requires a properly secured, highly available token vault architecture, which is itself a security-critical component needing careful design; adds a lookup or detokenization step wherever the real value is genuinely needed, such as submitting to a card network; vault provider selection and vault-to-platform integration add an architectural dependency.

Use cases

Card-on-file storage for recurring billing and one-click checkout; reducing PCI scope across internal systems handling payment references; refund and dispute processing without re-exposing card data.

HSM

Hardware security modules are dedicated, tamper-resistant hardware devices that generate, store and use cryptographic keys without those keys ever being exposed in plaintext to the host application or operating system. They are typically required, not optional, for operations like PIN block translation, card scheme certificate signing and other operations where key exposure would be catastrophic.

Advantages

Provides the strongest practical protection for cryptographic keys, since keys never leave the tamper-resistant hardware in usable plaintext form; often a hard requirement, not just a recommendation, for specific card scheme and PIN-related operations; tamper-evidence and tamper-response features protect against physical attack attempts.

Limitations

Meaningfully higher cost and operational complexity than software-based key management, both for on-premise HSMs and cloud HSM services; requires specialized expertise to configure, operate and disaster-recover correctly; capacity planning matters, since HSM cryptographic operation throughput is finite and can become a bottleneck at scale.

Use cases

PIN block translation and verification; card scheme certificate and key signing operations; protection of root and intermediate cryptographic keys.

Strong authentication

Multi-factor and step-up authentication require more than a password alone before granting access to sensitive actions such as admin panels, large transfers and credential changes, combining something the user knows, has or is. Step-up authentication in particular applies the strongest checks only to the highest-risk actions, rather than forcing maximum friction everywhere.

Advantages

Meaningfully reduces account takeover risk compared to password-only authentication; step-up patterns concentrate friction only where risk actually warrants it, protecting UX for routine actions; supports a range of factors such as TOTP, hardware keys and biometrics so teams can match assurance level to the specific action being protected.

Limitations

Adds genuine friction to user flows if applied indiscriminately rather than risk-appropriately, which can affect conversion and support volume; recovery flows for lost factors need careful design to avoid becoming a new attack vector; user education is required for adoption of stronger factors like hardware keys.

Use cases

Admin and merchant portal login protection; step-up verification for high-value transfers or configuration changes; API credential and key rotation actions.

Key management

Key management covers the full lifecycle of cryptographic keys, including generation, secure storage, rotation, distribution and eventual destruction, using dedicated key management services such as cloud KMS, HSMs or Vault rather than ad-hoc handling in application code or configuration files. Weak key management practices are one of the most common root causes behind otherwise well-encrypted systems being compromised.

Advantages

Centralizes and standardizes how keys are generated, rotated and audited across the platform, rather than leaving it to individual teams' ad-hoc practices; automated rotation policies reduce the risk of long-lived keys being compromised undetected; strong alignment with compliance framework expectations around key management requirements.

Limitations

Requires genuine process discipline across every team consuming keys, since a single team bypassing the standard process undermines the whole model; migrating existing systems with ad-hoc key handling onto a centralized service is a real undertaking, not a quick fix; key rotation for some legacy integrations can require carefully coordinated cutover windows.

Use cases

Rotation and lifecycle management of encryption and signing keys; centralized secrets management across services; compliance evidence generation for key management audits.

Monitoring

Security monitoring, through SIEM and anomaly detection, continuously analyzes logs, network traffic and system behavior to surface potential threats such as unusual access patterns, credential stuffing attempts and lateral movement early enough for a response team to act before an incident escalates. Effective monitoring is as much about tuning what generates an alert as it is about the underlying detection technology.

Advantages

Enables early detection of threats and anomalous behavior before they escalate into full incidents; provides the log correlation and historical record needed for post-incident forensic investigation; can be tuned over time to the platform's specific normal-behavior baseline, improving detection accuracy.

Limitations

Poorly tuned monitoring generates significant alert fatigue, which paradoxically makes teams slower to notice genuine incidents buried in noise; requires a properly staffed and trained team to actually respond to alerts around the clock; log volume and retention requirements can become a meaningful cost center at scale.

Use cases

Production environment threat detection and incident response; credential stuffing and brute-force attack detection; anomalous access pattern investigation.

Logging & audit

Immutable, tamper-evident audit logs record who did what, when and from where across the platform's sensitive systems, providing the evidentiary backbone for both security forensics and regulatory compliance audits. Logs that can be altered or deleted after the fact provide little real assurance to either an incident responder or an external auditor.

Advantages

Provides the concrete evidence auditors and regulators expect for compliance frameworks like PCI DSS and SOC 2; essential for reconstructing exactly what happened during a security incident or a disputed transaction; tamper-evidence, such as write-once storage or cryptographic chaining, meaningfully increases the trustworthiness of the record.

Limitations

Storage and retention costs grow continuously and must be budgeted for, especially at high transaction volume; logging sensitive data such as PANs or credentials directly into logs is a common and serious mistake that must be actively prevented through masking or redaction; log volume without good indexing or search tooling becomes practically unusable during an actual investigation.

Use cases

Financial operations and transaction audit trails; security incident forensic investigation; regulatory compliance evidence collection.

Access control

Role-based access control and the principle of least privilege ensure that every person and system component can only access the specific data and actions their role genuinely requires, nothing more. In a payment platform, this single control does more to limit the blast radius of a compromised credential or insider threat than almost any other security measure.

Advantages

Directly limits the blast radius of any single compromised credential or insider threat by design; well-understood, standard model such as RBAC or ABAC supported natively by essentially every modern framework and cloud provider; strongly aligned with compliance framework expectations around least-privilege access.

Limitations

Requires ongoing policy maintenance as roles, teams and systems evolve, and stale over-broad permissions are a common real-world finding in security reviews; getting role granularity right takes iteration, since overly coarse roles under-protect and overly fine-grained roles become unmanageable; periodic access reviews and de-provisioning discipline are needed, not just initial setup.

Use cases

Internal tooling and admin panel permission boundaries; service-to-service authorization between microservices; third-party and contractor access scoping.