Random Key
To provide a way to create salted password hashs (i.e. to prevent someone from sniffing a password hash and reusing it), SmartFoxServer provides a mechanism to generate random keys. The server generates this key, and returns it to the client. The client uses this to, for example, hash a password, and use it for login.
The client and server both share the action "rndK", as in both send/receive use this action.
When we send a request, we don't include the <k /> parameter. When we receive it, we receive <k>KEY</k> as a child of the <body /> node, i.e.
<msg t='sys'><body action='rndK' r='-1'><k>POJ|oCk[dJsEKu</k></body></msg>
![]() |
Warning: Some XML parsers might not recognise the value of k as valid XML (i.e. strict mode). But some Array/Object to XML generators (i.e. SimpleXML) will wrap the <k> tag in <![CDATA[ ]]> tags. This should not affect the client. |
Packet Information
Action | rndK |
---|---|
XML Node | <k>KEY</k> (Sent by Server) |