Not sure if that is the best of titles but...
In my android app I'm trying to verify a signed string.
My method to do this works if I copy and paste the signedString and the Signature into my Django/Python method directly (I get these strings from my logcat).
But when I try to actually send that data to the server, it always comes up saying it is not verified.
I have tried .encode('ascii') and .encode('utf_8') [just blindly trying these things] and nothing has worked.
Any suggestions?