Re: openssl chat

2010-12-13 Thread Bob Proulx
S Mathias wrote: > i can use "natively" openssl for anonymous chat: Yes. But it just connects your keyboard and handles the ssl encryption part. It doesn't really know about the chat protocol. > # Chat: > # server side: > openssl req -x509 -nodes -days 365 -newkey rsa:8192 -keyout mycert.pem

Re: openssl chat

2010-12-12 Thread Chris Bannister
On Sun, Dec 12, 2010 at 07:20:59AM -0800, S Mathias wrote: > i can use "natively" openssl for anonymous chat: [snip] May I suggest using an openssl mailing list to ask questions about general usage of openssl. http://www.openssl.org/support/community.html -- "Religion is excellent stuff for ke

openssl chat

2010-12-12 Thread S Mathias
i can use "natively" openssl for anonymous chat: # Chat: # server side: openssl req -x509 -nodes -days 365 -newkey rsa:8192 -keyout mycert.pem -out mycert.pem # server side - generate a self-signed cert. openssl s_server -accept 52310 -cert mycert.pem # client side - "127.0.0.1" is the IP of