Skip to content

nullisxyz/apdu

Repository files navigation

nexum-apdu: Smart Card APDU in Rust

nexum-apdu is a comprehensive toolkit for smart card communication in Rust using the APDU (Application Protocol Data Unit) protocol. Whether you're building a payment terminal, identity verification system, or HSM integration, nexum-apdu provides the foundation for secure card communications.

docs.rs Crates.io

Unlock the cryptographic conversations that smart cards are dying to have with nexum-apdu as your trusted interpreter.

Installation

The easiest way to get started is to add the core crate:

cargo add nexum-apdu-core

For PC/SC reader support, add:

cargo add nexum-apdu-transport-pcsc

For GlobalPlatform card management:

cargo add nexum-apdu-globalplatform

For APDU command/response pair macro support:

cargo add nexum-apdu-macros

Overview

This repository contains the following crates:

Features

  • 🎯 Abstracted transport layer supporting different card reader types
  • 🛡️ Secure channel support for GlobalPlatform SCP02 protocol
  • 🧩 Modular architecture allowing use of only what you need
  • 📦 Command processor pipeline for flexible transformations
  • 📝 Declarative command definitions with the apdu_pair! macro
  • 🔄 Response chaining support for handling complex responses

Documentation & Examples

For detailed documentation on each crate, please check their individual README files:

Example Applications

Check out these examples to see nexum-apdu in action:

For more examples, see the examples directory in each crate.

Architecture

nexum-apdu is built around three main architectural layers:

Transport Layer

The CardTransport trait handles the low-level communication with cards, providing a clean abstraction over different physical transport mechanisms.

Command Processor Layer

Command processors can transform, secure, or log APDU commands before they reach the transport layer, allowing for modular protocol implementations like secure channels.

Executor Layer

Executors manage the complete command execution flow, combining transports and processors to provide a high-level interface for applications.

Credits

This project builds upon the work done in:

License

Licensed under the AGPL License or http://www.gnu.org/licenses/agpl-3.0.html.

Contributions

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in these crates by you shall be licensed as above, without any additional terms or conditions.