tlsnotary / tlsn

Rust implementation of the TLSNotary protocol
https://tlsnotary.org
259 stars 69 forks source link

Support arbitrary Notary signature schemes #438

Open sinui0 opened 7 months ago

sinui0 commented 7 months ago

Right now we only support ECDSA signatures from the Notary. We need to add a layer of abstraction to support any kind of signature scheme using dynamic dispatch on some new traits.

sinui0 commented 7 months ago

For this we should look for existing traits from RustCrypto and use them if suitable.