1998-12-21 18:52:47 +08:00
|
|
|
|
Switch to MAJOR.MINOR.PATCH versioning and version 3.0.0-dev
We're strictly use version numbers of the form MAJOR.MINOR.PATCH.
Letter releases are things of days past.
The most central change is that we now express the version number with
three macros, one for each part of the version number:
OPENSSL_VERSION_MAJOR
OPENSSL_VERSION_MINOR
OPENSSL_VERSION_PATCH
We also provide two additional macros to express pre-release and build
metadata information (also specified in semantic versioning):
OPENSSL_VERSION_PRE_RELEASE
OPENSSL_VERSION_BUILD_METADATA
To get the library's idea of all those values, we introduce the
following functions:
unsigned int OPENSSL_version_major(void);
unsigned int OPENSSL_version_minor(void);
unsigned int OPENSSL_version_patch(void);
const char *OPENSSL_version_pre_release(void);
const char *OPENSSL_version_build_metadata(void);
Additionally, for shared library versioning (which is out of scope in
semantic versioning, but that we still need):
OPENSSL_SHLIB_VERSION
We also provide a macro that contains the release date. This is not
part of the version number, but is extra information that we want to
be able to display:
OPENSSL_RELEASE_DATE
Finally, also provide the following convenience functions:
const char *OPENSSL_version_text(void);
const char *OPENSSL_version_text_full(void);
The following macros and functions are deprecated, and while currently
existing for backward compatibility, they are expected to disappear:
OPENSSL_VERSION_NUMBER
OPENSSL_VERSION_TEXT
OPENSSL_VERSION
OpenSSL_version_num()
OpenSSL_version()
Also, this function is introduced to replace OpenSSL_version() for all
indexes except for OPENSSL_VERSION:
OPENSSL_info()
For configuration, the option 'newversion-only' is added to disable all
the macros and functions that are mentioned as deprecated above.
Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/7724)
2018-09-27 21:56:35 +08:00
|
|
|
OpenSSL 3.0.0-dev
|
1998-12-22 23:04:48 +08:00
|
|
|
|
2018-02-13 20:51:29 +08:00
|
|
|
Copyright (c) 1998-2018 The OpenSSL Project
|
1999-01-31 19:15:44 +08:00
|
|
|
Copyright (c) 1995-1998 Eric A. Young, Tim J. Hudson
|
1998-12-22 23:04:48 +08:00
|
|
|
All rights reserved.
|
|
|
|
|
1999-03-06 22:04:40 +08:00
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
|
1998-12-23 15:38:54 +08:00
|
|
|
The OpenSSL Project is a collaborative effort to develop a robust,
|
1998-12-22 23:04:48 +08:00
|
|
|
commercial-grade, fully featured, and Open Source toolkit implementing the
|
2016-06-02 18:01:32 +08:00
|
|
|
Transport Layer Security (TLS) protocols (including SSLv3) as well as a
|
|
|
|
full-strength general purpose cryptographic library.
|
1998-12-22 23:04:48 +08:00
|
|
|
|
2015-10-30 00:06:06 +08:00
|
|
|
OpenSSL is descended from the SSLeay library developed by Eric A. Young
|
2018-12-06 19:52:18 +08:00
|
|
|
and Tim J. Hudson.
|
|
|
|
|
|
|
|
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.
|
1998-12-22 23:04:48 +08:00
|
|
|
|
1999-03-06 22:04:40 +08:00
|
|
|
OVERVIEW
|
|
|
|
--------
|
|
|
|
|
1999-03-06 21:35:14 +08:00
|
|
|
The OpenSSL toolkit includes:
|
1998-12-22 23:04:48 +08:00
|
|
|
|
2016-03-18 04:13:23 +08:00
|
|
|
libssl (with platform specific naming):
|
2015-10-30 00:06:06 +08:00
|
|
|
Provides the client and server-side implementations for SSLv3 and TLS.
|
1998-12-22 23:04:48 +08:00
|
|
|
|
2016-03-18 04:13:23 +08:00
|
|
|
libcrypto (with platform specific naming):
|
2015-10-30 00:06:06 +08:00
|
|
|
Provides general cryptographic and X.509 support needed by SSL/TLS but
|
|
|
|
not logically part of it.
|
1998-12-22 23:04:48 +08:00
|
|
|
|
2005-04-26 05:36:56 +08:00
|
|
|
openssl:
|
2000-02-24 07:47:05 +08:00
|
|
|
A command line tool that can be used for:
|
2015-10-30 00:06:06 +08:00
|
|
|
Creation of key parameters
|
2005-04-26 05:36:56 +08:00
|
|
|
Creation of X.509 certificates, CSRs and CRLs
|
2015-10-30 00:06:06 +08:00
|
|
|
Calculation of message digests
|
|
|
|
Encryption and decryption
|
|
|
|
SSL/TLS client and server tests
|
2000-02-24 07:47:05 +08:00
|
|
|
Handling of S/MIME signed or encrypted mail
|
2015-10-30 00:06:06 +08:00
|
|
|
And more...
|
2000-02-24 07:47:05 +08:00
|
|
|
|
1999-03-06 22:04:40 +08:00
|
|
|
INSTALLATION
|
|
|
|
------------
|
|
|
|
|
2015-10-30 00:06:06 +08:00
|
|
|
See the appropriate file:
|
2016-05-23 21:11:04 +08:00
|
|
|
INSTALL Linux, Unix, Windows, OpenVMS, ...
|
|
|
|
NOTES.* INSTALL addendums for different platforms
|
2002-07-16 18:04:40 +08:00
|
|
|
|
2005-04-26 05:36:56 +08:00
|
|
|
SUPPORT
|
1999-03-06 22:04:40 +08:00
|
|
|
-------
|
|
|
|
|
2015-10-30 00:06:06 +08:00
|
|
|
See the OpenSSL website www.openssl.org for details on how to obtain
|
2016-06-02 18:01:32 +08:00
|
|
|
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).
|
2009-08-13 00:44:33 +08:00
|
|
|
|
1999-03-06 22:04:40 +08:00
|
|
|
If you have any problems with OpenSSL then please take the following steps
|
|
|
|
first:
|
|
|
|
|
2016-10-13 03:49:06 +08:00
|
|
|
- Download the latest version from the repository
|
2000-02-24 07:47:05 +08:00
|
|
|
to see if the problem has already been addressed
|
2016-10-13 03:49:06 +08:00
|
|
|
- Configure with no-asm
|
2017-11-12 08:03:10 +08:00
|
|
|
- Remove compiler optimization flags
|
1999-03-06 22:04:40 +08:00
|
|
|
|
2016-10-13 03:49:06 +08:00
|
|
|
If you wish to report a bug then please include the following information
|
|
|
|
and create an issue on GitHub:
|
1999-03-06 22:04:40 +08:00
|
|
|
|
2016-06-02 18:01:32 +08:00
|
|
|
- OpenSSL version: output of 'openssl version -a'
|
2018-01-30 01:19:36 +08:00
|
|
|
- Configuration data: output of 'perl configdata.pm --dump'
|
2016-06-02 18:01:32 +08:00
|
|
|
- OS Name, Version, Hardware platform
|
|
|
|
- Compiler Details (name, version)
|
2000-02-24 07:47:05 +08:00
|
|
|
- Application Details (name, version)
|
|
|
|
- Problem Description (steps that will reproduce the problem, if known)
|
|
|
|
- Stack Traceback (if the application dumps core)
|
1999-03-06 22:04:40 +08:00
|
|
|
|
2015-07-29 00:41:36 +08:00
|
|
|
Just because something doesn't work the way you expect does not mean it
|
2016-06-02 18:01:32 +08:00
|
|
|
is necessarily a bug in OpenSSL. Use the openssl-users email list for this type
|
|
|
|
of query.
|
2015-07-29 00:41:36 +08:00
|
|
|
|
1999-05-06 08:40:46 +08:00
|
|
|
HOW TO CONTRIBUTE TO OpenSSL
|
|
|
|
----------------------------
|
|
|
|
|
2015-10-17 19:10:55 +08:00
|
|
|
See CONTRIBUTING
|
2015-10-30 00:06:06 +08:00
|
|
|
|
|
|
|
LEGALITIES
|
|
|
|
----------
|
|
|
|
|
2016-10-26 23:48:43 +08:00
|
|
|
A number of nations restrict the use or export of cryptography. If you
|
2016-10-13 03:49:06 +08:00
|
|
|
are potentially subject to such restrictions you should seek competent
|
|
|
|
professional legal advice before attempting to develop or distribute
|
|
|
|
cryptographic code.
|