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
Task response is given with {encryption, signature} and the object itself is sent in plain
Other signed messages are prepared as signature_bytes || message_bytes where parsing it is a bit more byte-manipulation instead of simple JSON-parse & read field.
We should unify all this and simply work with JSON formats.
The text was updated successfully, but these errors were encountered:
We will add signature and recovery_id to DriaMessage struct. Furthermore, the signed data will change from SHA256(decoded_payload) to SHA256(payload) in DriaMessage which simplifies the code & saves one extra decoding step.
Currently we have two types of signed payloads:
{encryption, signature}
and the object itself is sent in plainsignature_bytes || message_bytes
where parsing it is a bit more byte-manipulation instead of simple JSON-parse & read field.We should unify all this and simply work with JSON formats.
The text was updated successfully, but these errors were encountered: