]> git.ipfire.org Git - thirdparty/openssl.git/blame - README.md
Windows makefile generator: Don't delete long lists of files in one go
[thirdparty/openssl.git] / README.md
CommitLineData
dac5138e 1[![openssl logo][]][www.openssl.org]
d02b48c6 2
dac5138e
DMSP
3[![travis badge][]][travis jobs]
4[![appveyor badge][]][appveyor jobs]
5
6
7
8Welcome to the OpenSSL Project
9==============================
10
11OpenSSL is a robust, commercial-grade, full-featured Open Source Toolkit
12for the Transport Layer Security (TLS) protocol formerly known as the
13Secure Sockets Layer (SSL) protocol. The protocol implementation is based
14on a full-strength general purpose cryptographic library, which can also
15be used stand-alone.
651d0aff 16
5f8e6c50
DMSP
17OpenSSL is descended from the SSLeay library developed by Eric A. Young
18and Tim J. Hudson.
dfca822f 19
dac5138e
DMSP
20The official Home Page of the OpenSSL Project is [www.openssl.org][].
21
22
23Table of Contents
24=================
25
26 - [Overview](#overview)
27 - [Download](#download)
28 - [Build and Install](#build-and-install)
29 - [Documentation](#documentation)
30 - [License](#license)
31 - [Support](#support)
32 - [Contributing](#contributing)
33 - [Legalities](#legalities)
651d0aff 34
5f8e6c50
DMSP
35Overview
36========
15133316 37
5f8e6c50 38The OpenSSL toolkit includes:
651d0aff 39
dac5138e
DMSP
40- **libssl**
41 an implementation of all TLS protocol versions up to TLSv1.3 ([RFC 8446][]).
42
43- **libcrypto**
44 a full-strength general purpose cryptographic library. It constitutes the
45 basis of the TLS implementation, but can also be used independently.
46
47- **openssl**
48 the OpenSSL command line tool, a swiss army knife for cryptographic tasks,
49 testing and analyzing. It can be used for
50 - creation of key parameters
51 - creation of X.509 certificates, CSRs and CRLs
52 - calculation of message digests
53 - encryption and decryption
54 - SSL/TLS client and server tests
55 - handling of S/MIME signed or encrypted mail
56 - and more...
57
58Download
59========
651d0aff 60
dac5138e
DMSP
61For Production Use
62------------------
651d0aff 63
dac5138e
DMSP
64Source code tarballs of the official releases can be downloaded from
65[www.openssl.org/source](https://www.openssl.org/source).
66The OpenSSL project does not distribute the toolkit in binary form.
d7f0ab5f 67
dac5138e
DMSP
68However, for a large variety of operating systems precompiled versions
69of the OpenSSL toolkit are available. In particular on Linux and other
70Unix operating systems it is normally recommended to link against the
71precompiled shared libraries provided by the distributor or vendor.
dfca822f 72
80e1495b 73
dac5138e
DMSP
74For Testing and Development
75---------------------------
dfca822f 76
dac5138e
DMSP
77Although testing and development could in theory also be done using
78the source tarballs, having a local copy of the git repository with
79the entire project history gives you much more insight into the
80code base.
81
82The official OpenSSL Git Repository is located at [git.openssl.org][].
83There is a GitHub mirror of the repository at [github.com/openssl/openssl][],
84which is updated automatically from the former on every commit.
85
86A local copy of the Git Repository can be obtained by cloning it from
87the original OpenSSL repository using
88
89 git clone git://git.openssl.org/openssl.git
90
91or from the GitHub mirror using
92
93 git clone https://github.com/openssl/openssl.git
94
95If you intend to contribute to OpenSSL, either to fix bugs or contribute
96new features, you need to fork the OpenSSL repository openssl/openssl on
97GitHub and clone your public fork instead.
98
99 git clone https://github.com/yourname/openssl.git
100
101This is necessary, because all development of OpenSSL nowadays is done via
102GitHub pull requests. For more details, see [Contributing](#contributing).
103
104
105Build and Install
106=================
107
108After obtaining the Source, have a look at the [INSTALL](INSTALL.md) file for
109detailed instructions about building and installing OpenSSL. For some
110platforms, the installation instructions are amended by a platform specific
111document.
112
113 * [NOTES.ANDROID](NOTES.ANDROID)
114 * [NOTES.DJGPP](NOTES.DJGPP)
115 * [NOTES.PERL](NOTES.PERL)
116 * [NOTES.UNIX](NOTES.UNIX)
117 * [NOTES.VALGRIND](NOTES.VALGRIND)
118 * [NOTES.VMS](NOTES.VMS)
119 * [NOTES.WIN](NOTES.WIN)
120
121
122Documentation
123=============
124
125Manual Pages
126------------
127
128The manual pages for the master branch and all current stable releases are
129available online.
130
131- [OpenSSL master](https://www.openssl.org/docs/manmaster)
132- [OpenSSL 1.1.1](https://www.openssl.org/docs/man1.1.1)
133
134Wiki
135----
136
137There is a Wiki at [wiki.openssl.org][] which is currently not very active.
138It contains a lot of useful information, not all of which is up to date.
139
140License
5f8e6c50 141=======
0e37c909 142
dac5138e
DMSP
143OpenSSL is licensed under the Apache License 2.0, which means that
144you are free to get and use it for commercial and non-commercial
145purposes as long as you fulfill its conditions.
dfca822f 146
dac5138e 147See the [LICENSE](LICENSE) file for more details.
dfca822f 148
dac5138e
DMSP
149Support
150=======
dfca822f 151
dac5138e
DMSP
152There are various ways to get in touch. The correct channel depends on
153your requirement. see the [SUPPORT](SUPPORT.md) file for more details.
dfca822f 154
dac5138e
DMSP
155Contributing
156============
932af161 157
dac5138e
DMSP
158If you are interested and willing to contribute to the OpenSSL project,
159please take a look at the [CONTRIBUTING](CONTRIBUTING.md) file.
b282fdae 160
dac5138e
DMSP
161Since 2016, development takes place in public on the GitHub open source
162platform. The OpenSSL Project Pages at [openssl.github.io][] are a
163valuable source of information if you want to get familiar with our
164development process on GitHub.
b06935f4 165
5f8e6c50 166
dac5138e
DMSP
167Legalities
168==========
b06935f4 169
dac5138e
DMSP
170A number of nations restrict the use or export of cryptography. If you are
171potentially subject to such restrictions you should seek legal advice before
172attempting to develop or distribute cryptographic code.
5f8e6c50
DMSP
173
174
175Copyright
176=========
177
dac5138e 178Copyright (c) 1998-2020 The OpenSSL Project
5f8e6c50
DMSP
179
180Copyright (c) 1995-1998 Eric A. Young, Tim J. Hudson
181
182All rights reserved.
dac5138e
DMSP
183
184
185<!-- Links -->
186
187[www.openssl.org]:
188 https://www.openssl.org
189 "OpenSSL Homepage"
190
191[git.openssl.org]:
192 https://git.openssl.org
193 "OpenSSL Git Repository"
194
195[git.openssl.org]:
196 https://git.openssl.org
197 "OpenSSL Git Repository"
198
199[github.com/openssl/openssl]:
200 https://github.com/openssl/openssl
201 "OpenSSL GitHub Mirror"
202
203[openssl.github.io]:
204 https://mspncp.github.io
205 "OpenSSL Project Pages"
206
207[wiki.openssl.org]:
208 https://wiki.openssl.org
209 "OpenSSL Wiki"
210
211
212[RFC 8446]:
213 https://tools.ietf.org/html/rfc8446
214
215
216<!-- Logos and Badges -->
217<!--
218 Note: The security token for the appveyor badge (the random number in
219 the URL below) was obtained for the mspncp/openssl project.
220 It needs to be replaced by the correct token by some core member
221 (@levitte, @mattcaswell?). It can be obtained for project members at
222 https://ci.appveyor.com/project/openssl/openssl/settings/badges.
223-->
224
225[openssl logo]:
226 doc/images/openssl.svg
227 "OpenSSL Logo"
228
229[travis badge]:
230 https://travis-ci.org/openssl/openssl.svg?branch=master
231 "Travis Build Status"
232
233[travis jobs]:
234 https://travis-ci.org/openssl/openssl
235 "Travis Jobs"
236
237[appveyor badge]:
238 https://ci.appveyor.com/api/projects/status/ikn2l4u1xsume63u/branch/master?svg=true
239 "AppVeyor Build Status"
240
241[appveyor jobs]:
242 https://ci.appveyor.com/project/openssl/openssl/branch/master
243 "AppVeyor Jobs"