2 releases
new 0.9.1 | Mar 17, 2025 |
---|---|
0.9.0 | Feb 25, 2025 |
#519 in Cryptography
222 downloads per month
Used in 2 crates
(via flmodules)
200KB
4.5K
SLoC
Crypto Wrappers
This crypto wrapper defines the following main structures:
Signer
- a generic structure to sign messagesVerifier
- a generic structure to verify signed messagesCondition
- an AND/OR/NofT combination of verifiers, badges, and conditionsBadge
- 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 aBadge
with aCondition
pointing to theVerifier
of thatSigner
. This allows the node to do key rotation by updating itsBadge
- A user wants to create a website with many objects, so they create:
- one or more nodes with the corresponding
Badge
s. A CLI tool to update the page also acts as a node. - a
WebPageT: Badge
with an OR of all nodes and CLIsBadge
s - a
WebPageAR: ACE
with rules likeupdate_object
,add_object
,rm_object
, pointing to theWebPageT
- one or more nodes with the corresponding
- 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 otherBadge
s. An example could be a rule to update theTTL
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 signaturesMlDSA
for different sizes of FIPS 204 compatible signatures
Condition
Badge
Dependencies
~12–29MB
~460K SLoC