I have a client / server program in TCP written in C, and I would like to provide data exchange with OpenSSL, this is completely new to me, and I could not find examples on the network ...
Could you point out some googd documentation about this?
Thank!
Check out the links below. They should be helpful.
http://www.linuxjournal.com/article/4822
http://www.ibm.com/developerworks/linux/library/l-openssl.html
Also see http://www.openssl.org/docs/
Step1 create a server certificate using
openssl req -new -x509 -out server.pem -nodes -keyout privkey.pem -subj /CN=localhost
Step2 Start the server
openssl s_server -www -ssl3 -cipher AES256-SHA -key privkey.pem
Step3 Testing the server
-
Source: https://habr.com/ru/post/1736459/More articles:Flex: menus, menus - flexBasic data selects objects from an array - iPhone - databaseIs it possible to inherit operator () in C ++? - c ++rails / mysql - how to disable ActiveRecord :: StatementInvalid error? - mysqlcall controller action from view - asp.net-mvcCall function by pressing div - javascriptHow to write C # code safe both with x86 and x64 when accessing COM? Typical traps? - c #Getting DLL version information through Win32 - Crash in VerQueryValue (...) under Win7 x64 - .netSearch for the first available identifier from an array - arrayshttps://translate.googleusercontent.com/translate_c?depth=1&pto=aue&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1736464/auto-fit-columns-to-their-contents-with-jqgrid&usg=ALkJrhj0Y4RmvpKgIozprVHymQp4wbOE9AAll Articles