Difference between revisions of "OpenSSL Overview"

From OpenSSLWiki
Jump to navigationJump to search
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
OpenSsl is used in many places but not always for same purpose and not always fully.
+
OpenSSL is a versatile tool that can be used for many purposes.
  
With OpenSsl You can:
+
OpenSSL provides:
  
* Use openssl as a command line tool to create/handle certificates related files. [[Command_Line_Utilities|openssl commands]]
+
* A command line application to perform a wide variety of cryptography tasks, such as creating and handling certificates and related files. [[Command_Line_Utilities|OpenSSL commands]]
* Develop programs needing cryptographic functions, then use openssl library [[Libcrypto_API|libcrypto]].
+
* A comprehensive and extensive cryptographic library [[Libcrypto_API|libcrypto]].
* Develop programs needing SSL/TLS communication, then use openssl library [[Libssl_API|libssl]].
+
* A library for enabling SSL/TLS communications [[Libssl_API|libssl]] to provide [[SSL and TLS Protocols]] support within clients or servers applications.
* Extend openssl to cover new cryptographic methods or new security protocols.
 
* Use openssl to test SSL/TLS protocols or use some not yet deployed in your environment ( openssl s_server, openssl s_client ).
 
  
== Command Line Usage ==
+
== Command Line ==
  
Use openssl as a command line tool to create/handle certificates related files. [[Command_Line_Utilities|openssl commands]]
+
Example uses of the OpenSSL command line tool include:
 +
* Creating and handling certificates and related files. [[Command_Line_Utilities|openssl commands]]. A beginners introduction to certificates is on the [[Certificate Lifecycle]] page.
 +
* Testing of SSL/TLS protocols (openssl s_server, openssl s_client).
  
== Development Usage ==
+
== History ==
  
=== cryptographic functions ===
+
[[History And People]]
  
use openssl library [[Libcrypto_API|libcrypto]].
+
[[Category:Beginner]]
 
 
=== SSL/TLS communication ===
 
 
 
use openssl library [[Libssl_API|libssl]].
 
 
 
== Protocol specification usage ==
 
 
 
== Network Security Diagnostic ==
 
 
 
[[Command_Line_Utilities|openssl commands]]
 

Latest revision as of 18:38, 14 October 2015

OpenSSL is a versatile tool that can be used for many purposes.

OpenSSL provides:

  • A command line application to perform a wide variety of cryptography tasks, such as creating and handling certificates and related files. OpenSSL commands
  • A comprehensive and extensive cryptographic library libcrypto.
  • A library for enabling SSL/TLS communications libssl to provide SSL and TLS Protocols support within clients or servers applications.

Command Line[edit]

Example uses of the OpenSSL command line tool include:

  • Creating and handling certificates and related files. openssl commands. A beginners introduction to certificates is on the Certificate Lifecycle page.
  • Testing of SSL/TLS protocols (openssl s_server, openssl s_client).

History[edit]

History And People