You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We could still enforce that exactly one response of the correct type is generated by consuming the responder and producing a Token that needs to be returned.
Goals:
avoid allocations
reduce stack usage and binary size
reduce code duplication in ctap-types (owned and borrowed)
reduce the need for fixed-sized buffers (reduce maintenance and complexity)
The text was updated successfully, but these errors were encountered:
To avoid the need for owned
Response
types, we should investigate the use of a callback-based API in theAuthenticator
traits:Or:
We could still enforce that exactly one response of the correct type is generated by consuming the
responder
and producing aToken
that needs to be returned.Goals:
The text was updated successfully, but these errors were encountered: