All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[0.1.0] - 2026-08-11

Added

Features

  • ✓ Asymmetric RSA-SHA256 signature verification
  • ✓ Canonical JSON format ensures tampering detection
  • ✓ Stateless validation — no state, config, or database required
  • ✓ Reusable across multiple Elixir services
  • ✓ Zero production dependencies (Jason for JSON only)
  • ✓ ~91% code coverage (52 tests, all critical paths covered)
  • ✓ Compatible with Elixir 1.14+

Design Principles

  • Minimal scope: One thing, done well (RSA signature validation and creation)
  • Stateless: All parameters passed as function arguments
  • No framework coupling: Works standalone without Phoenix, Plug, or Guardian
  • Cryptographic integrity: Canonical JSON + RSA-SHA256 prevents all tampering
  • Full API: Both sign (private key) and validate (public key) operations

Unreleased

Planned for Future Releases

  • [ ] Support for additional signature algorithms (ES256, EdDSA)
  • [ ] Token expiration enforcement
  • [ ] Revocation list support
  • [ ] Key rotation utilities
  • [ ] Benchmarking suite