Scahry
Scahry
"If you were using the stretched mode plugin with the Increased performance mode option and the GPU plugin, you may want to change the GPU UI scaling option to Nearest."...
was this while trying `echo '{"A": 1234}' | python3.8 hc1_sign.py | python3.8 hc1_verify.py` ? if so try replacing line 149 in hc1_sign.py with this one `out = b'HC1:' + bytes(b45encode(out),"utf8").decode().encode('ascii')`
update: base45 encoding seems to be different on windows and linux thats the variation that works for both `if platform == "win32" : out = b'HC1:' + b45encode(out).decode().encode('ascii') #linux else:...