Ensure that an OTP's issuer and label values are escaped correctly #391
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
This PR fixes/implements the following bugs/features:
What existing problem does the pull request solve?**
Currently, if you create an OTP with an issuer that contains a space, for example:
and then call
ToString
on thatoneTimePassword
, that will return:otpauth://totp/Google Google:[email protected]?secret=pwq65q55&issuer=Google%20Google
(note the first "Google Google" is not escaped, like the second one in the
issuer
parameter)which then looks like this in Google Authenticator after scanning the resulting QR code:
This PR resolves this issue by correctly escaping both instances of the issuer in the URL, which then appears correctly in Google Authenticator:
otpauth://totp/Google%20Google:[email protected]?secret=pwq65q55&issuer=Google%20Google
Test plan
Test cases have been added.
Closing issues
N/A