Files
apdu-dispatch/README.md
T

9 lines
477 B
Markdown
Raw Permalink Normal View History

2021-07-13 16:49:54 -07:00
# Apdu Dispatch
2024-06-05 12:35:06 +02:00
This repository contains two crates:
2024-06-05 12:35:06 +02:00
- [`apdu-app`](./app): provides an `App` trait for applications that accept APDU requests
- [`apdu-dispatch`](./dispatch): a layer that accepts APDU (application packet data units) from a contact and/or contactless interface and passes them to apps implementing `apdu_app::App`. It handles parsing APDU's, chaining, T=0, T=1 and keeps track of the selected application.
2021-07-13 16:49:54 -07:00
Run tests via `cargo test --features std,log-all`