Difference between revisions of "Libssl API"

From OpenSSLWiki
Jump to navigationJump to search
Line 1: Line 1:
 
libssl is the portion of OpenSSL which supports TLS ( [[SSL and TLS Protocols]] ), and depends on [[Libcrypto API|libcrypto]].
 
libssl is the portion of OpenSSL which supports TLS ( [[SSL and TLS Protocols]] ), and depends on [[Libcrypto API|libcrypto]].
 +
 +
This is a '''C''' api. To use it you need to include (at least) '''openssl/ssl.h''' and to link your program with libssl library.
  
 
* [[Diffie-Hellman parameters]]
 
* [[Diffie-Hellman parameters]]

Revision as of 19:18, 4 September 2014

libssl is the portion of OpenSSL which supports TLS ( SSL and TLS Protocols ), and depends on libcrypto.

This is a C api. To use it you need to include (at least) openssl/ssl.h and to link your program with libssl library.