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
QR code text is imported as is, no trimming/verification is done until user hits save
In attempt to generate my own QR code, I ran the following command.
fwknop --key-gen | qrencode -t UTF8
The above generated QR code would crash the app.
Afterwards, I tried edit the ouptut of fwknop --key-gen to conform to that of OpenWrt package (KEY_BASE64:{CODE} HMAC_KEY_BASE64:{CODE}). In the process also learned that the app doesn't attempt to trim the text from QR code.
This resulted in the save operation telling me the Base64 is invalid. It took me awhile to figure out that it was merely due to the fact that there is a space at the end of the Base64 code.
The text was updated successfully, but these errors were encountered:
Two problems discovered:
In attempt to generate my own QR code, I ran the following command.
The above generated QR code would crash the app.
Afterwards, I tried edit the ouptut of
fwknop --key-gen
to conform to that of OpenWrt package (KEY_BASE64:{CODE} HMAC_KEY_BASE64:{CODE}
). In the process also learned that the app doesn't attempt to trim the text from QR code.This resulted in the save operation telling me the Base64 is invalid. It took me awhile to figure out that it was merely due to the fact that there is a space at the end of the Base64 code.
The text was updated successfully, but these errors were encountered: