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
Currently VerifiedRegistration contains the attestation_object as bytes but it would be convinient if VerifiedRegistration contains the parsed AttestationStatement. This would make it easy to save the statement for later use without parsing the whole attestation_object again.
The text was updated successfully, but these errors were encountered:
Hello @bschoenmaeckers, to summarize the ask here, you'd like to see a new "attestation_statement" property added to VerifiedRegistration that contains the value of attestation_object.att_stmt (type of AttestationStatement)?
As an alternative approach, are you aware of the numerous helpers available in webauthn.helpers? webauthn.helpers.parse_attestation_object can be imported directly to run on VerifiedRegistration.attestation_object to then pull out of att_stmt whatever you want:
Currently
VerifiedRegistration
contains theattestation_object
as bytes but it would be convinient ifVerifiedRegistration
contains the parsedAttestationStatement
. This would make it easy to save the statement for later use without parsing the whole attestation_object again.The text was updated successfully, but these errors were encountered: