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
The AuthenticatorAssertionRawResponse class has two byte[] members Id and RawId. Both used, although RawId is just checked for existence and in tests.
As per MDNId is literally the base64url encoded value of RawId, I think Id should rather be a string and not base64url-decoded when received, but kept as string. The places currently using the Id property should use RawId instead.
I just debugged into an assertion, and Id and RawId do indeed have the exact same value in the backend.
The text was updated successfully, but these errors were encountered:
The
AuthenticatorAssertionRawResponse
class has twobyte[]
membersId
andRawId
. Both used, althoughRawId
is just checked for existence and in tests.As per MDN
Id
is literally the base64url encoded value ofRawId
, I thinkId
should rather be a string and not base64url-decoded when received, but kept as string. The places currently using theId
property should useRawId
instead.I just debugged into an assertion, and
Id
andRawId
do indeed have the exact same value in the backend.The text was updated successfully, but these errors were encountered: