README.md 3.2 KB
Newer Older
1 2
Description
===========
3

4 5 6 7
The OpenSSL Project is a collaborative effort to develop a robust,
commercial-grade, fully featured, and Open Source toolkit implementing the
Transport Layer Security (TLS) protocols (including SSLv3) as well as a
full-strength general purpose cryptographic library.
8

9 10
OpenSSL is descended from the SSLeay library developed by Eric A. Young
and Tim J. Hudson.
11

12 13 14
The OpenSSL toolkit is licensed under the Apache License 2.0, which means
that you are free to get and use it for commercial and non-commercial
purposes as long as you fulfill its conditions.
15

16 17
Overview
========
18

19
The OpenSSL toolkit includes:
20

21
 * **libssl**
R
Rich Salz 已提交
22
     Provides the client and server-side implementations for SSLv3 and TLS.
23

24
 * **libcrypto:**
R
Rich Salz 已提交
25 26
     Provides general cryptographic and X.509 support needed by SSL/TLS but
     not logically part of it.
27

28
 * **openssl:**
29
     A command line tool that can be used for:
R
Rich Salz 已提交
30
        Creation of key parameters
B
Bodo Möller 已提交
31
        Creation of X.509 certificates, CSRs and CRLs
R
Rich Salz 已提交
32 33 34
        Calculation of message digests
        Encryption and decryption
        SSL/TLS client and server tests
35
        Handling of S/MIME signed or encrypted mail
R
Rich Salz 已提交
36
        And more...
37

38 39
Installation
============
40

41
See the appropriate file:
42

43 44 45 46 47 48 49 50 51
 * [INSTALL](INSTALL): General installation instructions for all platforms
 * Additional instructions for specific platforms
    * [NOTES.ANDROID](NOTES.ANDROID)
    * [NOTES.DJGPP](NOTES.DJGPP)
    * [NOTES.PERL](NOTES.PERL)
    * [NOTES.UNIX](NOTES.UNIX)
    * [NOTES.VALGRIND](NOTES.VALGRIND)
    * [NOTES.VMS](NOTES.VMS)
    * [NOTES.WIN](NOTES.WIN)
52

53 54
Support
=======
55

56 57 58 59
See the OpenSSL website www.openssl.org for details on how to obtain
commercial technical support. Free community support is available through the
openssl-users email list (see
https://www.openssl.org/community/mailinglists.html for further details).
60

61 62
If you have any problems with OpenSSL then please take the following steps
first:
63

64 65 66 67
 - Download the latest version from the repository
   to see if the problem has already been addressed
 - Configure with no-asm
 - Remove compiler optimization flags
68

69 70
If you wish to report a bug then please include the following information
and create an issue on GitHub:
71

72 73 74 75 76 77 78
 - OpenSSL version: output of 'openssl version -a'
 - Configuration data: output of 'perl configdata.pm --dump'
 - OS Name, Version, Hardware platform
 - Compiler Details (name, version)
 - Application Details (name, version)
 - Problem Description (steps that will reproduce the problem, if known)
 - Stack Traceback (if the application dumps core)
79

80 81 82
Just because something doesn't work the way you expect does not mean it
is necessarily a bug in OpenSSL. Use the openssl-users email list for this type
of query.
U
Ulf Möller 已提交
83

84 85
How to contribute to OpenSSL
============================
R
Rich Salz 已提交
86

87 88 89 90
 See [CONTRIBUTING](CONTRIBUTING.md)

 Legalities
 ==========
R
Rich Salz 已提交
91

92
 A number of nations restrict the use or export of cryptography. If you
R
Rich Salz 已提交
93 94 95
 are potentially subject to such restrictions you should seek competent
 professional legal advice before attempting to develop or distribute
 cryptographic code.
96 97 98 99 100 101 102 103 104 105


Copyright
=========

Copyright (c) 1998-2018 The OpenSSL Project

Copyright (c) 1995-1998 Eric A. Young, Tim J. Hudson

All rights reserved.