I'm procrastinating on reviewing Build Challenge entries today, and instead came up with this,
and want to get some idea about how useful something like this would really be.
QR code format would be
{
"stellar": {
"challenge": {
"id": ACCOUNT_ID,
"message": MESSAGE,
"url": WEBHOOK_URL
}
}
}
The user scans the QR code, and POSTs (id, message, signature) to the web-hook, which in turn verifies the signature.
It's trivial to implement, about 50 lines of code, but there are a couple of gotchas, especially with hashing the message before signing.