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
Some structures are intended to travel between server and client, and should implement Serialize and Deserialize.
Currently:
Handshake is Serialize (server side ok), missing Deserialize for the client side;
HandshakeProof implements nothing, missing Serialize and Deserialize;
HandshakeProofVerifier (server side) and UserCredentials (client side) are Serialize, which is strange as they should never be exchanged. Also UserDetails is Serialize, which seems useless.
The text was updated successfully, but these errors were encountered:
Some structures are intended to travel between server and client, and should implement Serialize and Deserialize.
Currently:
The text was updated successfully, but these errors were encountered: