]> git.ipfire.org Git - thirdparty/openssl.git/blame_incremental - README.md
Copyright year updates
[thirdparty/openssl.git] / README.md
... / ...
CommitLineData
1Welcome to the OpenSSL Project
2==============================
3
4[![openssl logo]][www.openssl.org]
5
6[![github actions ci badge]][github actions ci]
7[![appveyor badge]][appveyor jobs]
8
9OpenSSL is a robust, commercial-grade, full-featured Open Source Toolkit
10for the TLS (formerly SSL), DTLS and QUIC (currently client side only)
11protocols.
12
13The protocol implementations are based on a full-strength general purpose
14cryptographic library, which can also be used stand-alone. Also included is a
15cryptographic module validated to conform with FIPS standards.
16
17OpenSSL is descended from the SSLeay library developed by Eric A. Young
18and Tim J. Hudson.
19
20The official Home Page of the OpenSSL Project is [www.openssl.org].
21
22Table of Contents
23=================
24
25 - [Overview](#overview)
26 - [Download](#download)
27 - [Build and Install](#build-and-install)
28 - [Documentation](#documentation)
29 - [License](#license)
30 - [Support](#support)
31 - [Contributing](#contributing)
32 - [Legalities](#legalities)
33
34Overview
35========
36
37The OpenSSL toolkit includes:
38
39- **libssl**
40 an implementation of all TLS protocol versions up to TLSv1.3 ([RFC 8446]),
41 DTLS protocol versions up to DTLSv1.2 ([RFC 6347]) and
42 the QUIC (currently client side only) version 1 protocol ([RFC 9000]).
43
44- **libcrypto**
45 a full-strength general purpose cryptographic library. It constitutes the
46 basis of the TLS implementation, but can also be used independently.
47
48- **openssl**
49 the OpenSSL command line tool, a swiss army knife for cryptographic tasks,
50 testing and analyzing. It can be used for
51 - creation of key parameters
52 - creation of X.509 certificates, CSRs and CRLs
53 - calculation of message digests
54 - encryption and decryption
55 - SSL/TLS/DTLS and client and server tests
56 - QUIC client tests
57 - handling of S/MIME signed or encrypted mail
58 - and more...
59
60Download
61========
62
63For Production Use
64------------------
65
66Source code tarballs of the official releases can be downloaded from
67[www.openssl.org/source](https://www.openssl.org/source).
68The OpenSSL project does not distribute the toolkit in binary form.
69
70However, for a large variety of operating systems precompiled versions
71of the OpenSSL toolkit are available. In particular, on Linux and other
72Unix operating systems, it is normally recommended to link against the
73precompiled shared libraries provided by the distributor or vendor.
74
75We also maintain a list of third parties that produce OpenSSL binaries for
76various Operating Systems (including Windows) on the [Binaries] page on our
77wiki.
78
79For Testing and Development
80---------------------------
81
82Although testing and development could in theory also be done using
83the source tarballs, having a local copy of the git repository with
84the entire project history gives you much more insight into the
85code base.
86
87The official OpenSSL Git Repository is located at [git.openssl.org].
88There is a GitHub mirror of the repository at [github.com/openssl/openssl],
89which is updated automatically from the former on every commit.
90
91A local copy of the Git Repository can be obtained by cloning it from
92the original OpenSSL repository using
93
94 git clone git://git.openssl.org/openssl.git
95
96or from the GitHub mirror using
97
98 git clone https://github.com/openssl/openssl.git
99
100If you intend to contribute to OpenSSL, either to fix bugs or contribute
101new features, you need to fork the OpenSSL repository openssl/openssl on
102GitHub and clone your public fork instead.
103
104 git clone https://github.com/yourname/openssl.git
105
106This is necessary because all development of OpenSSL nowadays is done via
107GitHub pull requests. For more details, see [Contributing](#contributing).
108
109Build and Install
110=================
111
112After obtaining the Source, have a look at the [INSTALL](INSTALL.md) file for
113detailed instructions about building and installing OpenSSL. For some
114platforms, the installation instructions are amended by a platform specific
115document.
116
117 * [Notes for UNIX-like platforms](NOTES-UNIX.md)
118 * [Notes for Android platforms](NOTES-ANDROID.md)
119 * [Notes for Windows platforms](NOTES-WINDOWS.md)
120 * [Notes for the DOS platform with DJGPP](NOTES-DJGPP.md)
121 * [Notes for the OpenVMS platform](NOTES-VMS.md)
122 * [Notes on Perl](NOTES-PERL.md)
123 * [Notes on Valgrind](NOTES-VALGRIND.md)
124
125Specific notes on upgrading to OpenSSL 3.x from previous versions can be found
126in the [ossl-guide-migration(7ossl)] manual page.
127
128Documentation
129=============
130
131README Files
132------------
133
134There are some README.md files in the top level of the source distribution
135containing additional information on specific topics.
136
137 * [Information about the OpenSSL QUIC protocol implementation](README-QUIC.md)
138 * [Information about the OpenSSL Provider architecture](README-PROVIDERS.md)
139 * [Information about using the OpenSSL FIPS validated module](README-FIPS.md)
140 * [Information about the legacy OpenSSL Engine architecture](README-ENGINES.md)
141
142The OpenSSL Guide
143-----------------
144
145There are some tutorial and introductory pages on some important OpenSSL topics
146within the [OpenSSL Guide].
147
148Manual Pages
149------------
150
151The manual pages for the master branch and all current stable releases are
152available online.
153
154- [OpenSSL master](https://www.openssl.org/docs/manmaster)
155- [OpenSSL 3.0](https://www.openssl.org/docs/man3.0)
156- [OpenSSL 3.1](https://www.openssl.org/docs/man3.1)
157- [OpenSSL 3.2](https://www.openssl.org/docs/man3.2)
158
159Demos
160-----
161
162The are numerous source code demos for using various OpenSSL capabilities in the
163[demos subfolder](./demos).
164
165Wiki
166----
167
168There is a Wiki at [wiki.openssl.org] which is currently not very active.
169It contains a lot of useful information, not all of which is up-to-date.
170
171License
172=======
173
174OpenSSL is licensed under the Apache License 2.0, which means that
175you are free to get and use it for commercial and non-commercial
176purposes as long as you fulfill its conditions.
177
178See the [LICENSE.txt](LICENSE.txt) file for more details.
179
180Support
181=======
182
183There are various ways to get in touch. The correct channel depends on
184your requirement. See the [SUPPORT](SUPPORT.md) file for more details.
185
186Contributing
187============
188
189If you are interested and willing to contribute to the OpenSSL project,
190please take a look at the [CONTRIBUTING](CONTRIBUTING.md) file.
191
192Legalities
193==========
194
195A number of nations restrict the use or export of cryptography. If you are
196potentially subject to such restrictions, you should seek legal advice before
197attempting to develop or distribute cryptographic code.
198
199Copyright
200=========
201
202Copyright (c) 1998-2024 The OpenSSL Project Authors
203
204Copyright (c) 1995-1998 Eric A. Young, Tim J. Hudson
205
206All rights reserved.
207
208<!-- Links -->
209
210[www.openssl.org]:
211 <https://www.openssl.org>
212 "OpenSSL Homepage"
213
214[git.openssl.org]:
215 <https://git.openssl.org>
216 "OpenSSL Git Repository"
217
218[git.openssl.org]:
219 <https://git.openssl.org>
220 "OpenSSL Git Repository"
221
222[github.com/openssl/openssl]:
223 <https://github.com/openssl/openssl>
224 "OpenSSL GitHub Mirror"
225
226[wiki.openssl.org]:
227 <https://wiki.openssl.org>
228 "OpenSSL Wiki"
229
230[ossl-guide-migration(7ossl)]:
231 <https://www.openssl.org/docs/manmaster/man7/ossl-guide-migration.html>
232 "OpenSSL Migration Guide"
233
234[RFC 8446]:
235 <https://tools.ietf.org/html/rfc8446>
236
237[RFC 6347]:
238 <https://tools.ietf.org/html/rfc6347>
239
240[RFC 9000]:
241 <https://tools.ietf.org/html/rfc9000>
242
243[Binaries]:
244 <https://wiki.openssl.org/index.php/Binaries>
245 "List of third party OpenSSL binaries"
246
247[OpenSSL Guide]:
248 <https://www.openssl.org/docs/manmaster/man7/ossl-guide-introduction.html>
249 "An introduction to OpenSSL"
250
251<!-- Logos and Badges -->
252
253[openssl logo]:
254 doc/images/openssl.svg
255 "OpenSSL Logo"
256
257[github actions ci badge]:
258 <https://github.com/openssl/openssl/workflows/GitHub%20CI/badge.svg>
259 "GitHub Actions CI Status"
260
261[github actions ci]:
262 <https://github.com/openssl/openssl/actions?query=workflow%3A%22GitHub+CI%22>
263 "GitHub Actions CI"
264
265[appveyor badge]:
266 <https://ci.appveyor.com/api/projects/status/8e10o7xfrg73v98f/branch/master?svg=true>
267 "AppVeyor Build Status"
268
269[appveyor jobs]:
270 <https://ci.appveyor.com/project/openssl/openssl/branch/master>
271 "AppVeyor Jobs"