Re: [Tutor] SHA256 P2P Chat in python

2014-06-09 Thread Lukas Nemec
Hi, I did a similar thing recently, a chat, that encrypts and signs (for authenticity) each message sent with private-pub keypair: https://github.com/lunemec/python-chat. It is not p2p, it sends messages to server, which decrypts them, encrypts with its pubkey and sends to all clients for de

Re: [Tutor] SHA256 P2P Chat in python

2014-06-08 Thread Danny Yoo
>> I was wondering if it is possible to make a p2p chat application with sha256 secured onion routing in python, and if so, what functions, guides, modules, etc. would I have to look at. This is somewhat outside of the experience of many folks on this list; you might consider asking on a broader f

[Tutor] SHA256 P2P Chat in python

2014-06-07 Thread Jack Little
Sent from my iPhone Begin forwarded message: > From: Jack Little > Date: June 6, 2014 at 6:41:04 PDT > To: "tutor-requ...@python.org" > Subject: SHA256 P2P Chat in python > Reply-To: Jack Little > > Hi Mailing List. > > I was wondering if it is possible to make a p2p chat application with