2 releases

new 0.9.1 Mar 17, 2025
0.9.0 Feb 25, 2025

#519 in Cryptography

Download history 76/week @ 2025-02-19 70/week @ 2025-02-26 5/week @ 2025-03-05 71/week @ 2025-03-12

222 downloads per month
Used in 2 crates (via flmodules)

MIT/Apache

200KB
4.5K SLoC

Crypto Wrappers

This crypto wrapper defines the following main structures:

  • Signer - a generic structure to sign messages
  • Verifier - a generic structure to verify signed messages
  • Condition - an AND/OR/NofT combination of verifiers, badges, and conditions
  • Badge - a trait with an ID, a Condition, and a version.

An example use-case is the following:

  • When a node starts, it creates a Signer, and a Badge with a Condition pointing to the Verifier of that Signer. This allows the node to do key rotation by updating its Badge
  • A user wants to create a website with many objects, so they create:
    • one or more nodes with the corresponding Badges. A CLI tool to update the page also acts as a node.
    • a WebPageT: Badge with an OR of all nodes and CLIs Badges
    • a WebPageAR: ACE with rules like update_object, add_object, rm_object, pointing to the WebPageT
  • Now the user can create objects and point them to the WebPageAR, allowing them to:
    • control all objects from any node
    • update the WebPageT if nodes join or go away
    • update the WebPageAR if part of the rules should apply to other Badges. An example could be a rule to update the TTL of an object, which could be allowed by more nodes than the rule to modify an object

Signer and Verifier

Currently there is an implementation for:

  • Ed25519 for good old EDDSA signatures
  • MlDSA for different sizes of FIPS 204 compatible signatures

Condition

Badge

Dependencies

~12–29MB
~460K SLoC