QTcpServer + Authorization
Hey @all,
I have a client-/server application based on QTcpServer and QTcpSocket.
Is there a way to implement User authentication (username, password). And if so how?
I've no plan to do this with QTcpServer/Socket. Can anybody help me out of this.
Regards
NoRulez
Re: QTcpServer + Authorization
There are lots of methods you can do that. The simplest is a trivial user/password check, like POP3 or HTTP Basic Auth do.
Re: QTcpServer + Authorization
OK,
i solved the problem with sending the password as a MD5 hash like in POP3
Thanks
Regards