Module webauthn_rs::ephemeral[][src]

Expand description

An implementation of an Ephemeral (in-memory) webauthn configuration provider This stores all challenges and credentials in memory - IE they are lost on service restart. It’s only really useful for demo-sites, testing and as an example/reference implementation of the WebauthnConfig trait.

IMPORTANT: DO NOT USE THIS IN PRODUCTION. YOU MUST IMPLEMENT YOUR OWN STRUCT DERIVING WebauthnConfig!!! This structure WILL be removed in a future release!

By default this implementation advertises support for all possible authenticators EVEN if they are NOT supported. This to is aid in test vector collection.

Structs

An implementation of an Ephemeral (in-memory) webauthn configuration provider This stores all challenges and credentials in memory - IE they are lost on service restart. It’s only really useful for demo-sites, testing and as an example/reference implementation of the WebauthnConfig trait.