Document the provider side SM2 Asymmetric Cipher support
[openssl.git] / INSTALL.md
1 Build and Install
2 =================
3
4 This document describes installation on all supported operating
5 systems (the Unix/Linux family, including macOS), OpenVMS,
6 and Windows).
7
8 Table of Contents
9 =================
10
11  - [Prerequisites](#prerequisites)
12  - [Notational Conventions](#notational-conventions)
13  - [Quick Installation Guide](#quick-installation-guide)
14    - [Building OpenSSL](#building-openssl)
15    - [Installing OpenSSL](#installing-openssl)
16  - [Configuration Options](#configuration-options)
17    - [API Level](#api-level)
18    - [Cross Compile Prefix](#cross-compile-prefix)
19    - [Build Type](#build-type)
20    - [Directories](#directories)
21    - [Compiler Warnings](#compiler-warnings)
22    - [ZLib Flags](#zlib-flags)
23    - [Seeding the Random Generator](#seeding-the-random-generator)
24    - [Setting the FIPS HMAC key](#setting-the-FIPS-HMAC-key)
25    - [Enable and Disable Features](#enable-and-disable-features)
26    - [Displaying configuration data](#displaying-configuration-data)
27  - [Installation Steps in Detail](#installation-steps-in-detail)
28    - [Configure](#configure-openssl)
29    - [Build](#build-openssl)
30    - [Test](#test-openssl)
31    - [Install](#install-openssl)
32  - [Advanced Build Options](#advanced-build-options)
33    - [Environment Variables](#environment-variables)
34    - [Makefile Targets](#makefile-targets)
35    - [Running Selected Tests](#running-selected-tests)
36  - [Troubleshooting](#troubleshooting)
37    - [Configuration Problems](#configuration-problems)
38    - [Build Failures](#build-failures)
39    - [Test Failures](#test-failures)
40  - [Notes](#notes)
41    - [Notes on multi-threading](#notes-on-multi-threading)
42    - [Notes on shared libraries](#notes-on-shared-libraries)
43    - [Notes on random number generation](#notes-on-random-number-generation)
44
45 Prerequisites
46 =============
47
48 To install OpenSSL, you will need:
49
50  * A "make" implementation
51  * Perl 5 with core modules (please read [NOTES-Perl.md](NOTES-Perl.md))
52  * The Perl module `Text::Template` (please read [NOTES-PERL.md](NOTES-Perl.md))
53  * an ANSI C compiler
54  * a development environment in the form of development libraries and C
55    header files
56  * a supported operating system
57
58 For additional platform specific requirements, solutions to specific
59 issues and other details, please read one of these:
60
61  * [NOTES-Unix.md](NOTES-Unix.md) - notes for Unix like systems
62  * [NOTES-VMS.md](NOTES-VMS.md) - notes related to OpenVMS
63  * [NOTES-Windows.txt](NOTES-Windows.txt) - notes related to the Windows platform
64  * [NOTES-DJGPP.md](NOTES-DJGPP.md) - building for DOS with DJGPP
65  * [NOTES-Android.md](NOTES-Android.md) - building for Android platforms (using NDK)
66  * [NOTES-Valgrind.md](NOTES-Valgrind.md) - testing with Valgrind
67  * [NOTES-Perl.m](NOTES-Perl.md) - some notes on Perl
68
69 Notational conventions
70 ======================
71
72 Throughout this document, we use the following conventions.
73
74 Commands
75 --------
76
77 Any line starting with a dollar sign is a command line.
78
79     $ command
80
81 The dollar sign indicates the shell prompt and is not to be entered as
82 part of the command.
83
84 Choices
85 -------
86
87 Several words in curly braces separated by pipe characters indicate a
88 **mandatory choice**, to be replaced with one of the given words.
89 For example, the line
90
91     $ echo { WORD1 | WORD2 | WORD3 }
92
93 represents one of the following three commands
94
95     $ echo WORD1
96     - or -
97     $ echo WORD2
98     - or -
99     $ echo WORD3
100
101 One or several words in square brackets separated by pipe characters
102 denote an **optional choice**.  It is similar to the mandatory choice,
103 but it can also be omitted entirely.
104
105 So the line
106
107     $ echo [ WORD1 | WORD2 | WORD3 ]
108
109 represents one of the four commands
110
111     $ echo WORD1
112     - or -
113     $ echo WORD2
114     - or -
115     $ echo WORD3
116     - or -
117     $ echo
118
119 Arguments
120 ---------
121
122 **Mandatory arguments** are enclosed in double curly braces.
123 A simple example would be
124
125     $ type {{ filename }}
126
127 which is to be understood to use the command `type` on some file name
128 determined by the user.
129
130 **Optional Arguments** are enclosed in double square brackets.
131
132     [[ options ]]
133
134 Note that the notation assumes spaces around `{`, `}`, `[`, `]`, `{{`, `}}` and
135 `[[`, `]]`.  This is to differentiate from OpenVMS directory
136 specifications, which also use [ and ], but without spaces.
137
138 Quick Installation Guide
139 ========================
140
141 If you just want to get OpenSSL installed without bothering too much
142 about the details, here is the short version of how to build and install
143 OpenSSL.  If any of the following steps fails, please consult the
144 [Installation in Detail](#installation-in-detail) section below.
145
146 Building OpenSSL
147 ----------------
148
149 Use the following commands to configure, build and test OpenSSL.
150 The testing is optional, but recommended if you intend to install
151 OpenSSL for production use.
152
153 ### Unix / Linux / macOS
154
155     $ ./Configure
156     $ make
157     $ make test
158
159 ### OpenVMS
160
161 Use the following commands to build OpenSSL:
162
163     $ perl Configure
164     $ mms
165     $ mms test
166
167 ### Windows
168
169 If you are using Visual Studio, open a Developer Command Prompt and
170 issue the following commands to build OpenSSL.
171
172     $ perl Configure
173     $ nmake
174     $ nmake test
175
176 As mentioned in the [Choices](#choices) section, you need to pick one
177 of the four Configure targets in the first command.
178
179 Most likely you will be using the `VC-WIN64A` target for 64bit Windows
180 binaries (AMD64) or `VC-WIN32` for 32bit Windows binaries (X86).
181 The other two options are `VC-WIN64I` (Intel IA64, Itanium) and
182 `VC-CE` (Windows CE) are rather uncommon nowadays.
183
184 Installing OpenSSL
185 ------------------
186
187 The following commands will install OpenSSL to a default system location.
188
189 **Danger Zone:** even if you are impatient, please read the following two
190 paragraphs carefully before you install OpenSSL.
191
192 For security reasons the default system location is by default not writable
193 for unprivileged users.  So for the final installation step administrative
194 privileges are required.  The default system location and the procedure to
195 obtain administrative privileges depends on the operating system.
196 It is recommended to compile and test OpenSSL with normal user privileges
197 and use administrative privileges only for the final installation step.
198
199 On some platforms OpenSSL is preinstalled as part of the Operating System.
200 In this case it is highly recommended not to overwrite the system versions,
201 because other applications or libraries might depend on it.
202 To avoid breaking other applications, install your copy of OpenSSL to a
203 [different location](#installing-to-a-different-location) which is not in
204 the global search path for system libraries.
205
206 Finally, if you plan on using the FIPS module, you need to read the
207 [Post-installation Notes](#post-installation-notes) further down.
208
209 ### Unix / Linux / macOS
210
211 Depending on your distribution, you need to run the following command as
212 root user or prepend `sudo` to the command:
213
214     $ make install
215
216 By default, OpenSSL will be installed to
217
218     /usr/local
219
220 More precisely, the files will be installed into the  subdirectories
221
222     /usr/local/bin
223     /usr/local/lib
224     /usr/local/include
225     ...
226
227 depending on the file type, as it is custom on Unix-like operating systems.
228
229 ### OpenVMS
230
231 Use the following command to install OpenSSL.
232
233     $ mms install
234
235 By default, OpenSSL will be installed to
236
237     SYS$COMMON:[OPENSSL-'version'...]
238
239 where 'version' is the OpenSSL version number with underscores instead
240 of periods.
241
242 ### Windows
243
244 If you are using Visual Studio, open the Developer Command Prompt _elevated_
245 and issue the following command.
246
247     $ nmake install
248
249 The easiest way to elevate the Command Prompt is to press and hold down
250 the both the `<CTRL>` and `<SHIFT>` key while clicking the menu item in the
251 task menu.
252
253 The default installation location is
254
255     C:\Program Files\OpenSSL
256
257 for native binaries, or
258
259     C:\Program Files (x86)\OpenSSL
260
261 for 32bit binaries on 64bit Windows (WOW64).
262
263 #### Installing to a different location
264
265 To install OpenSSL to a different location (for example into your home
266 directory for testing purposes) run `Configure` as shown in the following
267 examples.
268
269 On Unix:
270
271     $ ./Configure --prefix=/opt/openssl --openssldir=/usr/local/ssl
272
273 On OpenVMS:
274
275     $ perl Configure --prefix=PROGRAM:[INSTALLS] --openssldir=SYS$MANAGER:[OPENSSL]
276
277 Note: if you do add options to the configuration command, please make sure
278 you've read more than just this Quick Start, such as relevant `NOTES-*` files,
279 the options outline below, as configuration options may change the outcome
280 in otherwise unexpected ways.
281
282 Configuration Options
283 =====================
284
285 There are several options to `./Configure` to customize the build (note that
286 for Windows, the defaults for `--prefix` and `--openssldir` depend on what
287 configuration is used and what Windows implementation OpenSSL is built on.
288 More notes on this in [NOTES-Windows.txt](NOTES-Windows.txt):
289
290 API Level
291 ---------
292
293     --api=x.y[.z]
294
295 Build the OpenSSL libraries to support the API for the specified version.
296 If [no-deprecated](#no-deprecated) is also given, don't build with support
297 for deprecated APIs in or below the specified version number.  For example,
298 addding
299
300     --api=1.1.0 no-deprecated
301
302 will remove support for all APIs that were deprecated in OpenSSL version
303 1.1.0 or below.  This is a rather specialized option for developers.
304 If you just intend to remove all deprecated APIs up to the current version
305 entirely, just specify [no-deprecated](#no-deprecated).
306 If `--api` isn't given, it defaults to the current (minor) OpenSSL version.
307
308 Cross Compile Prefix
309 --------------------
310
311     --cross-compile-prefix=<PREFIX>
312
313 The `<PREFIX>` to include in front of commands for your toolchain.
314
315 It is likely to have to end with dash, e.g. `a-b-c-` would invoke GNU compiler
316 as `a-b-c-gcc`, etc.  Unfortunately cross-compiling is too case-specific to put
317 together one-size-fits-all instructions.  You might have to pass more flags or
318 set up environment variables to actually make it work.  Android and iOS cases
319 are discussed in corresponding `Configurations/15-*.conf` files.  But there are
320 cases when this option alone is sufficient.  For example to build the mingw64
321 target on Linux `--cross-compile-prefix=x86_64-w64-mingw32-` works.  Naturally
322 provided that mingw packages are installed.  Today Debian and Ubuntu users
323 have option to install a number of prepackaged cross-compilers along with
324 corresponding run-time and development packages for "alien" hardware.  To give
325 another example `--cross-compile-prefix=mipsel-linux-gnu-` suffices in such
326 case.
327
328 For cross compilation, you must [configure manually](#manual-configuration).
329 Also, note that `--openssldir` refers to target's file system, not one you are
330 building on.
331
332 Build Type
333 ----------
334
335     --debug
336
337 Build OpenSSL with debugging symbols and zero optimization level.
338
339     --release
340
341 Build OpenSSL without debugging symbols.  This is the default.
342
343 Directories
344 -----------
345
346 ### libdir
347
348     --libdir=DIR
349
350 The name of the directory under the top of the installation directory tree
351 (see the `--prefix` option) where libraries will be installed.  By default
352 this is `lib/`. Note that on Windows only static libraries (`*.lib`) will
353 be stored in this location. Shared libraries (`*.dll`) will always be
354 installed to the `bin/` directory.
355
356 ### openssldir
357
358     --openssldir=DIR
359
360 Directory for OpenSSL configuration files, and also the default certificate
361 and key store.  Defaults are:
362
363     Unix:           /usr/local/ssl
364     Windows:        C:\Program Files\Common Files\SSL
365     OpenVMS:        SYS$COMMON:[OPENSSL-COMMON]
366
367 For 32bit Windows applications on Windows 64bit (WOW64), always replace
368 `C:\Program Files` by `C:\Program Files (x86)`.
369
370 ### prefix
371
372     --prefix=DIR
373
374 The top of the installation directory tree.  Defaults are:
375
376     Unix:           /usr/local
377     Windows:        C:\Program Files\OpenSSL
378     OpenVMS:        SYS$COMMON:[OPENSSL-'version']
379
380 Compiler Warnings
381 -----------------
382
383     --strict-warnings
384
385 This is a developer flag that switches on various compiler options recommended
386 for OpenSSL development.  It only works when using gcc or clang as the compiler.
387 If you are developing a patch for OpenSSL then it is recommended that you use
388 this option where possible.
389
390 ZLib Flags
391 ----------
392
393 ### with-zlib-include
394
395     --with-zlib-include=DIR
396
397 The directory for the location of the zlib include file.  This option is only
398 necessary if [enable-zlib](#enable-zlib) is used and the include file is not
399 already on the system include path.
400
401 ### with-zlib-lib
402
403     --with-zlib-lib=LIB
404
405 **On Unix**: this is the directory containing the zlib library.
406 If not provided the system library path will be used.
407
408 **On Windows:** this is the filename of the zlib library (with or
409 without a path).  This flag must be provided if the
410 [zlib-dynamic](#zlib-dynamic) option is not also used. If `zlib-dynamic` is used
411 then this flag is optional and defaults to `ZLIB1` if not provided.
412
413 **On VMS:** this is the filename of the zlib library (with or without a path).
414 This flag is optional and if not provided then `GNV$LIBZSHR`, `GNV$LIBZSHR32`
415 or `GNV$LIBZSHR64` is used by default depending on the pointer size chosen.
416
417 Seeding the Random Generator
418 ----------------------------
419
420     --with-rand-seed=seed1[,seed2,...]
421
422 A comma separated list of seeding methods which will be tried by OpenSSL
423 in order to obtain random input (a.k.a "entropy") for seeding its
424 cryptographically secure random number generator (CSPRNG).
425 The current seeding methods are:
426
427 ### os
428
429 Use a trusted operating system entropy source.
430 This is the default method if such an entropy source exists.
431
432 ### getrandom
433
434 Use the [getrandom(2)][man-getrandom] or equivalent system call.
435
436 [man-getrandom]: http://man7.org/linux/man-pages/man2/getrandom.2.html
437
438 ### devrandom
439
440 Use the first device from the `DEVRANDOM` list which can be opened to read
441 random bytes.  The `DEVRANDOM` preprocessor constant expands to
442
443     "/dev/urandom","/dev/random","/dev/srandom"
444
445 on most unix-ish operating systems.
446
447 ### egd
448
449 Check for an entropy generating daemon.
450 This source is ignored by the FIPS provider.
451
452 ### rdcpu
453
454 Use the `RDSEED` or `RDRAND` command if provided by the CPU.
455
456 ### librandom
457
458 Use librandom (not implemented yet).
459 This source is ignored by the FIPS provider.
460
461 ### none
462
463 Disable automatic seeding.  This is the default on some operating systems where
464 no suitable entropy source exists, or no support for it is implemented yet.
465 This option is ignored by the FIPS provider.
466
467 For more information, see the section [Notes on random number generation][rng]
468 at the end of this document.
469
470 [rng]: #notes-on-random-number-generation
471
472 Setting the FIPS HMAC key
473 -------------------------
474
475     --fips-key=value
476
477 As part of its self-test validation, the FIPS module must verify itself
478 by performing a SHA-256 HMAC computation on itself. The default key is
479 the SHA256 value of "the holy handgrenade of antioch" and is sufficient
480 for meeting the FIPS requirements.
481
482 To change the key to a different value, use this flag. The value should
483 be a hex string no more than 64 characters.
484
485 Enable and Disable Features
486 ---------------------------
487
488 Feature options always come in pairs, an option to enable feature
489 `xxxx`, and an option to disable it:
490
491     [ enable-xxxx | no-xxxx ]
492
493 Whether a feature is enabled or disabled by default, depends on the feature.
494 In the following list, always the non-default variant is documented: if
495 feature `xxxx` is disabled by default then `enable-xxxx` is documented and
496 if feature `xxxx` is enabled by default then `no-xxxx` is documented.
497
498 ### no-afalgeng
499
500 Don't build the AFALG engine.
501
502 This option will be forced on a platform that does not support AFALG.
503
504 ### enable-ktls
505
506 Build with Kernel TLS support.
507
508 This option will enable the use of the Kernel TLS data-path, which can improve
509 performance and allow for the use of sendfile and splice system calls on
510 TLS sockets.  The Kernel may use TLS accelerators if any are available on the
511 system.  This option will be forced off on systems that do not support the
512 Kernel TLS data-path.
513
514 ### enable-asan
515
516 Build with the Address sanitiser.
517
518 This is a developer option only.  It may not work on all platforms and should
519 never be used in production environments.  It will only work when used with
520 gcc or clang and should be used in conjunction with the [no-shared](#no-shared)
521 option.
522
523 ### no-acvp_tests
524
525 Do not build support for Automated Cryptographic Validation Protocol (ACVP)
526 tests.
527
528 This is required for FIPS validation purposes. Certain ACVP tests require
529 access to algorithm internals that are not normally accessible.
530 Additional information related to ACVP can be found at
531 <https://github.com/usnistgov/ACVP>.
532
533 ### no-asm
534
535 Do not use assembler code.
536
537 This should be viewed as debugging/troubleshooting option rather than for
538 production use.  On some platforms a small amount of assembler code may still
539 be used even with this option.
540
541 ### no-async
542
543 Do not build support for async operations.
544
545 ### no-autoalginit
546
547 Don't automatically load all supported ciphers and digests.
548
549 Typically OpenSSL will make available all of its supported ciphers and digests.
550 For a statically linked application this may be undesirable if small executable
551 size is an objective.  This only affects libcrypto.  Ciphers and digests will
552 have to be loaded manually using `EVP_add_cipher()` and `EVP_add_digest()`
553 if this option is used.  This option will force a non-shared build.
554
555 ### no-autoerrinit
556
557 Don't automatically load all libcrypto/libssl error strings.
558
559 Typically OpenSSL will automatically load human readable error strings.  For a
560 statically linked application this may be undesirable if small executable size
561 is an objective.
562
563 ### no-autoload-config
564
565 Don't automatically load the default `openssl.cnf` file.
566
567 Typically OpenSSL will automatically load a system config file which configures
568 default SSL options.
569
570 ### enable-buildtest-c++
571
572 While testing, generate C++ buildtest files that simply check that the public
573 OpenSSL header files are usable standalone with C++.
574
575 Enabling this option demands extra care.  For any compiler flag given directly
576 as configuration option, you must ensure that it's valid for both the C and
577 the C++ compiler.  If not, the C++ build test will most likely break.  As an
578 alternative, you can use the language specific variables, `CFLAGS` and `CXXFLAGS`.
579
580 ### no-capieng
581
582 Don't build the CAPI engine.
583
584 This option will be forced if on a platform that does not support CAPI.
585
586 ### no-cmp
587
588 Don't build support for Certificate Management Protocol (CMP)
589 and Certificate Request Message Format (CRMF).
590
591 ### no-cms
592
593 Don't build support for Cryptographic Message Syntax (CMS).
594
595 ### no-comp
596
597 Don't build support for SSL/TLS compression.
598
599 If this option is enabled (the default), then compression will only work if
600 the zlib or `zlib-dynamic` options are also chosen.
601
602 ### enable-crypto-mdebug
603
604 This now only enables the `failed-malloc` feature.
605
606 ### enable-crypto-mdebug-backtrace
607
608 This is a no-op; the project uses the compiler's address/leak sanitizer instead.
609
610 ### no-ct
611
612 Don't build support for Certificate Transparency (CT).
613
614 ### no-deprecated
615
616 Don't build with support for deprecated APIs up until and including the version
617 given with `--api` (or the current version, if `--api` wasn't specified).
618
619 ### no-dgram
620
621 Don't build support for datagram based BIOs.
622
623 Selecting this option will also force the disabling of DTLS.
624
625 ### no-dso
626
627 Don't build support for loading Dynamic Shared Objects (DSO)
628
629 ### enable-devcryptoeng
630
631 Build the `/dev/crypto` engine.
632
633 This option is automatically selected on the BSD platform, in which case it can
634 be disabled with `no-devcryptoeng`.
635
636 ### no-dynamic-engine
637
638 Don't build the dynamically loaded engines.
639
640 This only has an effect in a shared build.
641
642 ### no-ec
643
644 Don't build support for Elliptic Curves.
645
646 ### no-ec2m
647
648 Don't build support for binary Elliptic Curves
649
650 ### enable-ec_nistp_64_gcc_128
651
652 Enable support for optimised implementations of some commonly used NIST
653 elliptic curves.
654
655 This option is only supported on platforms:
656
657  - with little-endian storage of non-byte types
658  - that tolerate misaligned memory references
659  - where the compiler:
660    - supports the non-standard type `__uint128_t`
661    - defines the built-in macro `__SIZEOF_INT128__`
662
663 ### enable-egd
664
665 Build support for gathering entropy from the Entropy Gathering Daemon (EGD).
666
667 ### no-engine
668
669 Don't build support for loading engines.
670
671 ### no-err
672
673 Don't compile in any error strings.
674
675 ### enable-external-tests
676
677 Enable building of integration with external test suites.
678
679 This is a developer option and may not work on all platforms.  The following
680 external test suites are currently supported:
681
682  - BoringSSL test suite
683  - Python PYCA/Cryptography test suite
684  - krb5 test suite
685
686 See the file [test/README-external.md](test/README-external.md)
687 for further details.
688
689 ### no-filenames
690
691 Don't compile in filename and line number information (e.g.  for errors and
692 memory allocation).
693
694 ### no-fips
695
696 Don't compile the FIPS provider
697
698 ### no-fips-securitychecks
699
700 Don't perform FIPS module run-time checks related to enforcement of security
701 parameters such as minimum security strength of keys.
702
703 ### enable-fuzz-libfuzzer, enable-fuzz-afl
704
705 Build with support for fuzzing using either libfuzzer or AFL.
706
707 These are developer options only.  They may not work on all  platforms and
708 should never be used in production environments.
709
710 See the file [fuzz/README.md](fuzz/README.md) for further details.
711
712 ### no-gost
713
714 Don't build support for GOST based ciphersuites.
715
716 Note that if this feature is enabled then GOST ciphersuites are only available
717 if the GOST algorithms are also available through loading an externally supplied
718 engine.
719
720 ### no-legacy
721
722 Don't build the legacy provider.
723
724 Disabling this also disables the legacy algorithms: MD2 (already disabled by default).
725
726 ### no-makedepend
727
728 Don't generate dependencies.
729
730 ### no-module
731
732 Don't build any dynamically loadable engines.
733
734 This also implies `no-dynamic-engine`.
735
736 ### no-multiblock
737
738 Don't build support for writing multiple records in one go in libssl
739
740 Note: this is a different capability to the pipelining functionality.
741
742 ### no-nextprotoneg
743
744 Don't build support for the Next Protocol Negotiation (NPN) TLS extension.
745
746 ### no-ocsp
747
748 Don't build support for Online Certificate Status Protocol (OCSP).
749
750 ### no-padlockeng
751
752 Don't build the padlock engine.
753
754 ### no-hw-padlock
755
756 As synonym for `no-padlockeng`.  Deprecated and should not be used.
757
758 ### no-pic
759
760 Don't build with support for Position Independent Code.
761
762 ### no-pinshared
763
764 Don't pin the shared libraries.
765
766 By default OpenSSL will attempt to stay in memory until the process exits.
767 This is so that libcrypto and libssl can be properly cleaned up automatically
768 via an `atexit()` handler.  The handler is registered by libcrypto and cleans
769 up both libraries.  On some platforms the `atexit()` handler will run on unload of
770 libcrypto (if it has been dynamically loaded) rather than at process exit.  This
771 option can be used to stop OpenSSL from attempting to stay in memory until the
772 process exits.  This could lead to crashes if either libcrypto or libssl have
773 already been unloaded at the point that the atexit handler is invoked, e.g.  on a
774 platform which calls `atexit()` on unload of the library, and libssl is unloaded
775 before libcrypto then a crash is likely to happen.  Applications can suppress
776 running of the `atexit()` handler at run time by using the
777 `OPENSSL_INIT_NO_ATEXIT` option to `OPENSSL_init_crypto()`.
778 See the man page for it for further details.
779
780 ### no-posix-io
781
782 Don't use POSIX IO capabilities.
783
784 ### no-psk
785
786 Don't build support for Pre-Shared Key based ciphersuites.
787
788 ### no-rdrand
789
790 Don't use hardware RDRAND capabilities.
791
792 ### no-rfc3779
793
794 Don't build support for RFC3779, "X.509 Extensions for IP Addresses and
795 AS Identifiers".
796
797 ### sctp
798
799 Build support for Stream Control Transmission Protocol (SCTP).
800
801 ### no-shared
802
803 Do not create shared libraries, only static ones.
804
805 See [Notes on shared libraries](#notes-on-shared-libraries) below.
806
807 ### no-sock
808
809 Don't build support for socket BIOs.
810
811 ### no-srp
812
813 Don't build support for Secure Remote Password (SRP) protocol or
814 SRP based ciphersuites.
815
816 ### no-srtp
817
818 Don't build Secure Real-Time Transport Protocol (SRTP) support.
819
820 ### no-sse2
821
822 Exclude SSE2 code paths from 32-bit x86 assembly modules.
823
824 Normally SSE2 extension is detected at run-time, but the decision whether or not
825 the machine code will be executed is taken solely on CPU capability vector.  This
826 means that if you happen to run OS kernel which does not support SSE2 extension
827 on Intel P4 processor, then your application might be exposed to "illegal
828 instruction" exception.  There might be a way to enable support in kernel, e.g.
829 FreeBSD kernel can be compiled with `CPU_ENABLE_SSE`, and there is a way to
830 disengage SSE2 code paths upon application start-up, but if you aim for wider
831 "audience" running such kernel, consider `no-sse2`.  Both the `386` and `no-asm`
832 options imply `no-sse2`.
833
834 ### enable-ssl-trace
835
836 Build with the SSL Trace capabilities.
837
838 This adds the `-trace` option to `s_client` and `s_server`.
839
840 ### no-static-engine
841
842 Don't build the statically linked engines.
843
844 This only has an impact when not built "shared".
845
846 ### no-stdio
847
848 Don't use anything from the C header file `stdio.h` that makes use of the `FILE`
849 type.  Only libcrypto and libssl can be built in this way.  Using this option will
850 suppress building the command line applications.  Additionally, since the OpenSSL
851 tests also use the command line applications, the tests will also be skipped.
852
853 ### no-tests
854
855 Don't build test programs or run any tests.
856
857 ### no-threads
858
859 Don't build with support for multi-threaded applications.
860
861 ### threads
862
863 Build with support for multi-threaded applications.  Most platforms will enable
864 this by default.  However, if on a platform where this is not the case then this
865 will usually require additional system-dependent options!
866
867 See [Notes on multi-threading](#notes-on-multi-threading) below.
868
869 ### enable-trace
870
871 Build with support for the integrated tracing api.
872
873 See manual pages OSSL_trace_set_channel(3) and OSSL_trace_enabled(3) for details.
874
875 ### no-ts
876
877 Don't build Time Stamping (TS) Authority support.
878
879 ### enable-ubsan
880
881 Build with the Undefined Behaviour sanitiser (UBSAN).
882
883 This is a developer option only.  It may not work on all platforms and should
884 never be used in production environments.  It will only work when used with
885 gcc or clang and should be used in conjunction with the `-DPEDANTIC` option
886 (or the `--strict-warnings` option).
887
888 ### no-ui-console
889
890 Don't build with the User Interface (UI) console method
891
892 The User Interface console method enables text based console prompts.
893
894 ### enable-unit-test
895
896 Enable additional unit test APIs.
897
898 This should not typically be used in production deployments.
899
900 ### no-uplink
901
902 Don't build support for UPLINK interface.
903
904 ### enable-weak-ssl-ciphers
905
906 Build support for SSL/TLS ciphers that are considered "weak"
907
908 Enabling this includes for example the RC4 based ciphersuites.
909
910 ### zlib
911
912 Build with support for zlib compression/decompression.
913
914 ### zlib-dynamic
915
916 Like the zlib option, but has OpenSSL load the zlib library dynamically
917 when needed.
918
919 This is only supported on systems where loading of shared libraries is supported.
920
921 ### 386
922
923 In 32-bit x86 builds, use the 80386 instruction set only in assembly modules
924
925 The default x86 code is more efficient, but requires at least an 486 processor.
926 Note: This doesn't affect compiler generated code, so this option needs to be
927 accompanied by a corresponding compiler-specific option.
928
929 ### no-{protocol}
930
931     no-{ssl|ssl3|tls|tls1|tls1_1|tls1_2|tls1_3|dtls|dtls1|dtls1_2}
932
933 Don't build support for negotiating the specified SSL/TLS protocol.
934
935 If `no-tls` is selected then all of `tls1`, `tls1_1`, `tls1_2` and `tls1_3`
936 are disabled.
937 Similarly `no-dtls` will disable `dtls1` and `dtls1_2`.  The `no-ssl` option is
938 synonymous with `no-ssl3`.  Note this only affects version negotiation.
939 OpenSSL will still provide the methods for applications to explicitly select
940 the individual protocol versions.
941
942 ### no-{protocol}-method
943
944     no-{ssl|ssl3|tls|tls1|tls1_1|tls1_2|tls1_3|dtls|dtls1|dtls1_2}-method
945
946 Analogous to `no-{protocol}` but in addition do not build the methods for
947 applications to explicitly select individual protocol versions.  Note that there
948 is no `no-tls1_3-method` option because there is no application method for
949 TLSv1.3.
950
951 Using individual protocol methods directly is deprecated.  Applications should
952 use `TLS_method()` instead.
953
954 ### enable-{algorithm}
955
956     enable-{md2|rc5}
957
958 Build with support for the specified algorithm.
959
960 ### no-{algorithm}
961
962     no-{aria|bf|blake2|camellia|cast|chacha|cmac|
963         des|dh|dsa|ecdh|ecdsa|idea|md4|mdc2|ocb|
964         poly1305|rc2|rc4|rmd160|scrypt|seed|
965         siphash|siv|sm2|sm3|sm4|whirlpool}
966
967 Build without support for the specified algorithm.
968
969 The `ripemd` algorithm is deprecated and if used is synonymous with `rmd160`.
970
971 ### Compiler-specific options
972
973     -Dxxx, -Ixxx, -Wp, -lxxx, -Lxxx, -Wl, -rpath, -R, -framework, -static
974
975 These system specific options will be recognised and passed through to the
976 compiler to allow you to define preprocessor symbols, specify additional
977 libraries, library directories or other compiler options.  It might be worth
978 noting that some compilers generate code specifically for processor the
979 compiler currently executes on.  This is not necessarily what you might have
980 in mind, since it might be unsuitable for execution on other, typically older,
981 processor.  Consult your compiler documentation.
982
983 Take note of the [Environment Variables](#environment-variables) documentation
984 below and how these flags interact with those variables.
985
986     -xxx, +xxx, /xxx
987
988 Additional options that are not otherwise recognised are passed through as
989 they are to the compiler as well.  Unix-style options beginning with a
990 `-` or `+` and Windows-style options beginning with a `/` are recognized.
991 Again, consult your compiler documentation.
992
993 If the option contains arguments separated by spaces, then the URL-style
994 notation `%20` can be used for the space character in order to avoid having
995 to quote the option.  For example, `-opt%20arg` gets expanded to `-opt arg`.
996 In fact, any ASCII character can be encoded as %xx using its hexadecimal
997 encoding.
998
999 Take note of the [Environment Variables](#environment-variables) documentation
1000 below and how these flags interact with those variables.
1001
1002 ### Environment Variables
1003
1004     VAR=value
1005
1006 Assign the given value to the environment variable `VAR` for `Configure`.
1007
1008 These work just like normal environment variable assignments, but are supported
1009 on all platforms and are confined to the configuration scripts only.
1010 These assignments override the corresponding value in the inherited environment,
1011 if there is one.
1012
1013 The following variables are used as "`make` variables" and can be used as an
1014 alternative to giving preprocessor, compiler and linker options directly as
1015 configuration.  The following variables are supported:
1016
1017     AR              The static library archiver.
1018     ARFLAGS         Flags for the static library archiver.
1019     AS              The assembler compiler.
1020     ASFLAGS         Flags for the assembler compiler.
1021     CC              The C compiler.
1022     CFLAGS          Flags for the C compiler.
1023     CXX             The C++ compiler.
1024     CXXFLAGS        Flags for the C++ compiler.
1025     CPP             The C/C++ preprocessor.
1026     CPPFLAGS        Flags for the C/C++ preprocessor.
1027     CPPDEFINES      List of CPP macro definitions, separated
1028                     by a platform specific character (':' or
1029                     space for Unix, ';' for Windows, ',' for
1030                     VMS).  This can be used instead of using
1031                     -D (or what corresponds to that on your
1032                     compiler) in CPPFLAGS.
1033     CPPINCLUDES     List of CPP inclusion directories, separated
1034                     the same way as for CPPDEFINES.  This can
1035                     be used instead of -I (or what corresponds
1036                     to that on your compiler) in CPPFLAGS.
1037     HASHBANGPERL    Perl invocation to be inserted after '#!'
1038                     in public perl scripts (only relevant on
1039                     Unix).
1040     LD              The program linker (not used on Unix, $(CC)
1041                     is used there).
1042     LDFLAGS         Flags for the shared library, DSO and
1043                     program linker.
1044     LDLIBS          Extra libraries to use when linking.
1045                     Takes the form of a space separated list
1046                     of library specifications on Unix and
1047                     Windows, and as a comma separated list of
1048                     libraries on VMS.
1049     RANLIB          The library archive indexer.
1050     RC              The Windows resource compiler.
1051     RCFLAGS         Flags for the Windows resource compiler.
1052     RM              The command to remove files and directories.
1053
1054 These cannot be mixed with compiling/linking flags given on the command line.
1055 In other words, something like this isn't permitted.
1056
1057     $ ./Configure -DFOO CPPFLAGS=-DBAR -DCOOKIE
1058
1059 Backward compatibility note:
1060
1061 To be compatible with older configuration scripts, the environment variables
1062 are ignored if compiling/linking flags are given on the command line, except
1063 for the following:
1064
1065     AR, CC, CXX, CROSS_COMPILE, HASHBANGPERL, PERL, RANLIB, RC, and WINDRES
1066
1067 For example, the following command will not see `-DBAR`:
1068
1069     $ CPPFLAGS=-DBAR ./Configure -DCOOKIE
1070
1071 However, the following will see both set variables:
1072
1073     $ CC=gcc CROSS_COMPILE=x86_64-w64-mingw32- ./Configure -DCOOKIE
1074
1075 If `CC` is set, it is advisable to also set `CXX` to ensure both the C and C++
1076 compiler are in the same "family".  This becomes relevant with
1077 `enable-external-tests` and `enable-buildtest-c++`.
1078
1079 ### Reconfigure
1080
1081     reconf
1082     reconfigure
1083
1084 Reconfigure from earlier data.
1085
1086 This fetches the previous command line options and environment from data
1087 saved in `configdata.pm` and runs the configuration process again, using
1088 these options and environment.  Note: NO other option is permitted together
1089 with `reconf`.  Note: The original configuration saves away values for ALL
1090 environment variables that were used, and if they weren't defined, they are
1091 still saved away with information that they weren't originally defined.
1092 This information takes precedence over environment variables that are
1093 defined when reconfiguring.
1094
1095 Displaying configuration data
1096 -----------------------------
1097
1098 The configuration script itself will say very little, and finishes by
1099 creating `configdata.pm`.  This perl module can be loaded by other scripts
1100 to find all the configuration data, and it can also be used as a script to
1101 display all sorts of configuration data in a human readable form.
1102
1103 For more information, please do:
1104
1105     $ ./configdata.pm --help                         # Unix
1106
1107 or
1108
1109     $ perl configdata.pm --help                      # Windows and VMS
1110
1111 Installation Steps in Detail
1112 ============================
1113
1114 Configure OpenSSL
1115 -----------------
1116
1117 ### Automatic Configuration
1118
1119 On some platform a `config` script is available which attempts to guess
1120 your operating system (and compiler, if necessary) and calls the `Configure`
1121 Perl script with appropriate target based on its guess.  Further options can
1122 be supplied to the `config` script, which will be passed on to the `Configure`
1123 script.
1124
1125 #### Unix / Linux / macOS
1126
1127     $ ./Configure [[ options ]]
1128
1129 #### OpenVMS
1130
1131     $ perl Configure [[ options ]]
1132
1133 #### Windows
1134
1135     $ perl Configure [[ options ]]
1136
1137 ### Manual Configuration
1138
1139 OpenSSL knows about a range of different operating system, hardware and
1140 compiler combinations.  To see the ones it knows about, run
1141
1142     $ ./Configure LIST                               # Unix
1143
1144 or
1145
1146     $ perl Configure LIST                            # All other platforms
1147
1148 For the remainder of this text, the Unix form will be used in all examples.
1149 Please use the appropriate form for your platform.
1150
1151 Pick a suitable name from the list that matches your system.  For most
1152 operating systems there is a choice between using cc or gcc.
1153 When you have identified your system (and if necessary compiler) use this
1154 name as the argument to `Configure`.  For example, a `linux-elf` user would
1155 run:
1156
1157     $ ./Configure linux-elf [[ options ]]
1158
1159 ### Creating your own Configuration
1160
1161 If your system isn't listed, you will have to create a configuration
1162 file named `Configurations/{{ something }}.conf` and add the correct
1163 configuration for your system.  See the available configs as examples
1164 and read [Configurations/README.md](Configurations/README.md) and
1165 [Configurations/README-design.md](Configurations/README-design.md)
1166 for more information.
1167
1168 The generic configurations `cc` or `gcc` should usually work on 32 bit
1169 Unix-like systems.
1170
1171 `Configure` creates a build file (`Makefile` on Unix, `makefile` on Windows
1172 and `descrip.mms` on OpenVMS) from a suitable template in `Configurations/`,
1173 and defines various macros in `include/openssl/configuration.h` (generated
1174 from `include/openssl/configuration.h.in`.
1175
1176 ### Out of Tree Builds
1177
1178 OpenSSL can be configured to build in a build directory separate from the
1179 source code directory.  It's done by placing yourself in some other
1180 directory and invoking the configuration commands from there.
1181
1182 #### Unix example
1183
1184     $ mkdir /var/tmp/openssl-build
1185     $ cd /var/tmp/openssl-build
1186     $ /PATH/TO/OPENSSL/SOURCE/Configure [[ options ]]
1187
1188 #### OpenVMS example
1189
1190     $ set default sys$login:
1191     $ create/dir [.tmp.openssl-build]
1192     $ set default [.tmp.openssl-build]
1193     $ perl D:[PATH.TO.OPENSSL.SOURCE]Configure [[ options ]]
1194
1195 #### Windows example
1196
1197     $ C:
1198     $ mkdir \temp-openssl
1199     $ cd \temp-openssl
1200     $ perl d:\PATH\TO\OPENSSL\SOURCE\Configure [[ options ]]
1201
1202 Paths can be relative just as well as absolute.  `Configure` will do its best
1203 to translate them to relative paths whenever possible.
1204
1205 Build OpenSSL
1206 -------------
1207
1208 Build OpenSSL by running:
1209
1210     $ make                                           # Unix
1211     $ mms                                            ! (or mmk) OpenVMS
1212     $ nmake                                          # Windows
1213
1214 This will build the OpenSSL libraries (`libcrypto.a` and `libssl.a` on
1215 Unix, corresponding on other platforms) and the OpenSSL binary
1216 (`openssl`).  The libraries will be built in the top-level directory,
1217 and the binary will be in the `apps/` subdirectory.
1218
1219 If the build fails, take a look at the [Build Failures](#build-failures)
1220 subsection of the [Troubleshooting](#troubleshooting) section.
1221
1222 Test OpenSSL
1223 ------------
1224
1225 After a successful build, and before installing, the libraries should
1226 be tested.  Run:
1227
1228     $ make test                                      # Unix
1229     $ mms test                                       ! OpenVMS
1230     $ nmake test                                     # Windows
1231
1232 **Warning:** you MUST run the tests from an unprivileged account (or disable
1233 your privileges temporarily if your platform allows it).
1234
1235 See [test/README.md](test/README.md) for further details how run tests.
1236
1237 See [test/README-dev.md](test/README-dev.md) for guidelines on adding tests.
1238
1239 Install OpenSSL
1240 ---------------
1241
1242 If everything tests ok, install OpenSSL with
1243
1244     $ make install                                   # Unix
1245     $ mms install                                    ! OpenVMS
1246     $ nmake install                                  # Windows
1247
1248 Note that in order to perform the install step above you need to have
1249 appropriate permissions to write to the installation directory.
1250
1251 The above commands will install all the software components in this
1252 directory tree under `<PREFIX>` (the directory given with `--prefix` or
1253 its default):
1254
1255 ### Unix / Linux / macOS
1256
1257     bin/           Contains the openssl binary and a few other
1258                    utility scripts.
1259     include/openssl
1260                    Contains the header files needed if you want
1261                    to build your own programs that use libcrypto
1262                    or libssl.
1263     lib            Contains the OpenSSL library files.
1264     lib/engines    Contains the OpenSSL dynamically loadable engines.
1265
1266     share/man/man1 Contains the OpenSSL command line man-pages.
1267     share/man/man3 Contains the OpenSSL library calls man-pages.
1268     share/man/man5 Contains the OpenSSL configuration format man-pages.
1269     share/man/man7 Contains the OpenSSL other misc man-pages.
1270
1271     share/doc/openssl/html/man1
1272     share/doc/openssl/html/man3
1273     share/doc/openssl/html/man5
1274     share/doc/openssl/html/man7
1275                    Contains the HTML rendition of the man-pages.
1276
1277 ### OpenVMS
1278
1279 'arch' is replaced with the architecture name, `Alpha` or `ia64`,
1280 'sover' is replaced with the shared library version (`0101` for 1.1), and
1281 'pz' is replaced with the pointer size OpenSSL was built with:
1282
1283     [.EXE.'arch']  Contains the openssl binary.
1284     [.EXE]         Contains a few utility scripts.
1285     [.include.openssl]
1286                    Contains the header files needed if you want
1287                    to build your own programs that use libcrypto
1288                    or libssl.
1289     [.LIB.'arch']  Contains the OpenSSL library files.
1290     [.ENGINES'sover''pz'.'arch']
1291                    Contains the OpenSSL dynamically loadable engines.
1292     [.SYS$STARTUP] Contains startup, login and shutdown scripts.
1293                    These define appropriate logical names and
1294                    command symbols.
1295     [.SYSTEST]     Contains the installation verification procedure.
1296     [.HTML]        Contains the HTML rendition of the manual pages.
1297
1298 ### Additional Directories
1299
1300 Additionally, install will add the following directories under
1301 OPENSSLDIR (the directory given with `--openssldir` or its default)
1302 for you convenience:
1303
1304     certs          Initially empty, this is the default location
1305                    for certificate files.
1306     private        Initially empty, this is the default location
1307                    for private key files.
1308     misc           Various scripts.
1309
1310 The installation directory should be appropriately protected to ensure
1311 unprivileged users cannot make changes to OpenSSL binaries or files, or
1312 install engines.  If you already have a pre-installed version of OpenSSL as
1313 part of your Operating System it is recommended that you do not overwrite
1314 the system version and instead install to somewhere else.
1315
1316 Package builders who want to configure the library for standard locations,
1317 but have the package installed somewhere else so that it can easily be
1318 packaged, can use
1319
1320     $ make DESTDIR=/tmp/package-root install         # Unix
1321     $ mms/macro="DESTDIR=TMP:[PACKAGE-ROOT]" install ! OpenVMS
1322
1323 The specified destination directory will be prepended to all installation
1324 target paths.
1325
1326 Compatibility issues with previous OpenSSL versions
1327 ---------------------------------------------------
1328
1329 ### COMPILING existing applications
1330
1331 Starting with version 1.1.0, OpenSSL hides a number of structures that were
1332 previously open.  This includes all internal libssl structures and a number
1333 of EVP types.  Accessor functions have been added to allow controlled access
1334 to the structures' data.
1335
1336 This means that some software needs to be rewritten to adapt to the new ways
1337 of doing things.  This often amounts to allocating an instance of a structure
1338 explicitly where you could previously allocate them on the stack as automatic
1339 variables, and using the provided accessor functions where you would previously
1340 access a structure's field directly.
1341
1342 Some APIs have changed as well.  However, older APIs have been preserved when
1343 possible.
1344
1345 Post-installation Notes
1346 -----------------------
1347
1348 With the default OpenSSL installation comes a FIPS provider module, which
1349 needs some post-installation attention, without which it will not be usable.
1350 This involves using the following command:
1351
1352     $ openssl fipsinstall
1353
1354 See the openssl-fipsinstall(1) manual for details and examples.
1355
1356 Advanced Build Options
1357 ======================
1358
1359 Environment Variables
1360 ---------------------
1361
1362 A number of environment variables can be used to provide additional control
1363 over the build process.  Typically these should be defined prior to running
1364 `Configure`.  Not all environment variables are relevant to all platforms.
1365
1366     AR
1367                    The name of the ar executable to use.
1368
1369     BUILDFILE
1370                    Use a different build file name than the platform default
1371                    ("Makefile" on Unix-like platforms, "makefile" on native Windows,
1372                    "descrip.mms" on OpenVMS).  This requires that there is a
1373                    corresponding build file template.
1374                    See [Configurations/README.md](Configurations/README.md)
1375                    for further information.
1376
1377     CC
1378                    The compiler to use. Configure will attempt to pick a default
1379                    compiler for your platform but this choice can be overridden
1380                    using this variable. Set it to the compiler executable you wish
1381                    to use, e.g. gcc or clang.
1382
1383     CROSS_COMPILE
1384                    This environment variable has the same meaning as for the
1385                    "--cross-compile-prefix" Configure flag described above. If both
1386                    are set then the Configure flag takes precedence.
1387
1388     NM
1389                    The name of the nm executable to use.
1390
1391     OPENSSL_LOCAL_CONFIG_DIR
1392                    OpenSSL comes with a database of information about how it
1393                    should be built on different platforms as well as build file
1394                    templates for those platforms. The database is comprised of
1395                    ".conf" files in the Configurations directory.  The build
1396                    file templates reside there as well as ".tmpl" files. See the
1397                    file [Configurations/README.md](Configurations/README.md)
1398                    for further information about the format of ".conf" files
1399                    as well as information on the ".tmpl" files.
1400                    In addition to the standard ".conf" and ".tmpl" files, it is
1401                    possible to create your own ".conf" and ".tmpl" files and
1402                    store them locally, outside the OpenSSL source tree.
1403                    This environment variable can be set to the directory where
1404                    these files are held and will be considered by Configure
1405                    before it looks in the standard directories.
1406
1407     PERL
1408                    The name of the Perl executable to use when building OpenSSL.
1409                    Only needed if builing should use a different Perl executable
1410                    than what is used to run the Configure script.
1411
1412     HASHBANGPERL
1413                    The command string for the Perl executable to insert in the
1414                    #! line of perl scripts that will be publicly installed.
1415                    Default: /usr/bin/env perl
1416                    Note: the value of this variable is added to the same scripts
1417                    on all platforms, but it's only relevant on Unix-like platforms.
1418
1419     RC
1420                    The name of the rc executable to use. The default will be as
1421                    defined for the target platform in the ".conf" file. If not
1422                    defined then "windres" will be used. The WINDRES environment
1423                    variable is synonymous to this. If both are defined then RC
1424                    takes precedence.
1425
1426     RANLIB
1427                    The name of the ranlib executable to use.
1428
1429     WINDRES
1430                    See RC.
1431
1432 Makefile Targets
1433 ----------------
1434
1435 The `Configure` script generates a Makefile in a format relevant to the specific
1436 platform.  The Makefiles provide a number of targets that can be used.  Not all
1437 targets may be available on all platforms.  Only the most common targets are
1438 described here.  Examine the Makefiles themselves for the full list.
1439
1440     all
1441                    The target to build all the software components and
1442                    documentation.
1443
1444     build_sw
1445                    Build all the software components.
1446                    THIS IS THE DEFAULT TARGET.
1447
1448     build_docs
1449                    Build all documentation components.
1450
1451     clean
1452                    Remove all build artefacts and return the directory to a "clean"
1453                    state.
1454
1455     depend
1456                    Rebuild the dependencies in the Makefiles. This is a legacy
1457                    option that no longer needs to be used since OpenSSL 1.1.0.
1458
1459     install
1460                    Install all OpenSSL components.
1461
1462     install_sw
1463                    Only install the OpenSSL software components.
1464
1465     install_docs
1466                    Only install the OpenSSL documentation components.
1467
1468     install_man_docs
1469                    Only install the OpenSSL man pages (Unix only).
1470
1471     install_html_docs
1472                    Only install the OpenSSL HTML documentation.
1473
1474     list-tests
1475                    Prints a list of all the self test names.
1476
1477     test
1478                    Build and run the OpenSSL self tests.
1479
1480     uninstall
1481                    Uninstall all OpenSSL components.
1482
1483     reconfigure
1484     reconf
1485                    Re-run the configuration process, as exactly as the last time
1486                    as possible.
1487
1488     update
1489                    This is a developer option. If you are developing a patch for
1490                    OpenSSL you may need to use this if you want to update
1491                    automatically generated files; add new error codes or add new
1492                    (or change the visibility of) public API functions. (Unix only).
1493
1494 Running Selected Tests
1495 ----------------------
1496
1497 You can specify a set of tests to be performed
1498 using the `make` variable `TESTS`.
1499
1500 See the section [Running Selected Tests of
1501 test/README.md](test/README.md#running-selected-tests).
1502
1503 Troubleshooting
1504 ===============
1505
1506 Configuration Problems
1507 ----------------------
1508
1509 ### Selecting the correct target
1510
1511 The `./Configure` script tries hard to guess your operating system, but in some
1512 cases it does not succeed. You will see a message like the following:
1513
1514     $ ./Configure
1515     Operating system: x86-whatever-minix
1516     This system (minix) is not supported. See file INSTALL.md for details.
1517
1518 Even if the automatic target selection by the `./Configure` script fails,
1519 chances are that you still might find a suitable target in the `Configurations`
1520 directory, which you can supply to the `./Configure` command,
1521 possibly after some adjustment.
1522
1523 The `Configurations/` directory contains a lot of examples of such targets.
1524 The main configuration file is [10-main.conf][], which contains all targets that
1525 are officially supported by the OpenSSL team. Other configuration files contain
1526 targets contributed by other OpenSSL users. The list of targets can be found in
1527 a Perl list `my %targets = ( ... )`.
1528
1529     my %targets = (
1530     ...
1531     "target-name" => {
1532         inherit_from     => [ "base-target" ],
1533         CC               => "...",
1534         cflags           => add("..."),
1535         asm_arch         => '...',
1536         perlasm_scheme   => "...",
1537     },
1538     ...
1539     )
1540
1541 If you call `./Configure` without arguments, it will give you a list of all
1542 known targets. Using `grep`, you can lookup the target definition in the
1543 `Configurations/` directory. For example the `android-x86_64` can be found in
1544 [Configurations/15-android.conf](Configurations/15-android.conf).
1545
1546 The directory contains two README files, which explain the general syntax and
1547 design of the configuration files.
1548
1549  - [Configurations/README.md](Configurations/README.md)
1550  - [Configurations/README-design.md](Configurations/README-design.md)
1551
1552 If you need further help, try to search the [openssl-users][] mailing list
1553 or the [GitHub Issues][] for existing solutions. If you don't find anything,
1554 you can [raise an issue][] to ask a question yourself.
1555
1556 More about our support resources can be found in the [SUPPORT][] file.
1557
1558 ### Configuration Errors
1559
1560 If the `./Configure` or `./Configure` command fails with an error message,
1561 read the error message carefully and try to figure out whether you made
1562 a mistake (e.g., by providing a wrong option), or whether the script is
1563 working incorrectly. If you think you encountered a bug, please
1564 [raise an issue][] on GitHub to file a bug report.
1565
1566 Along with a short description of the bug, please provide the complete
1567 configure command line and the relevant output including the error message.
1568
1569 Note: To make the output readable, pleace add a 'code fence' (three backquotes
1570 ` ``` ` on a separate line) before and after your output:
1571
1572      ```
1573      ./Configure [your arguments...]
1574
1575      [output...]
1576
1577      ```
1578
1579 Build Failures
1580 --------------
1581
1582 If the build fails, look carefully at the output. Try to locate and understand
1583 the error message. It might be that the compiler is already telling you
1584 exactly what you need to do to fix your problem.
1585
1586 There may be reasons for the failure that aren't problems in OpenSSL itself,
1587 for example if the compiler reports missing standard or third party headers.
1588
1589 If the build succeeded previously, but fails after a source or configuration
1590 change, it might be helpful to clean the build tree before attempting another
1591 build.  Use this command:
1592
1593     $ make clean                                     # Unix
1594     $ mms clean                                      ! (or mmk) OpenVMS
1595     $ nmake clean                                    # Windows
1596
1597 Assembler error messages can sometimes be sidestepped by using the
1598 `no-asm` configuration option.
1599
1600 Compiling parts of OpenSSL with gcc and others with the system compiler will
1601 result in unresolved symbols on some systems.
1602
1603 If you are still having problems, try to search the [openssl-users][] mailing
1604 list or the [GitHub Issues][] for existing solutions. If you think you
1605 encountered an OpenSSL bug, please [raise an issue][] to file a bug report.
1606 Please take the time to review the existing issues first; maybe the bug was
1607 already reported or has already been fixed.
1608
1609 Test Failures
1610 -------------
1611
1612 If some tests fail, look at the output.  There may be reasons for the failure
1613 that isn't a problem in OpenSSL itself (like an OS malfunction or a Perl issue).
1614
1615 You may want increased verbosity, that can be accomplished as described in
1616 section [Test Failures of test/README.md](test/README.md#test-failures).
1617
1618 You may also want to selectively specify which test(s) to perform. This can be
1619 done using the `make` variable `TESTS` as described in section [Running
1620 Selected Tests of test/README.md](test/README.md#running-selected-tests).
1621
1622 If you find a problem with OpenSSL itself, try removing any
1623 compiler optimization flags from the `CFLAGS` line in the Makefile and
1624 run `make clean; make` or corresponding.
1625
1626 To report a bug please open an issue on GitHub, at
1627 <https://github.com/openssl/openssl/issues>.
1628
1629 Notes
1630 =====
1631
1632 Notes on multi-threading
1633 ------------------------
1634
1635 For some systems, the OpenSSL `Configure` script knows what compiler options
1636 are needed to generate a library that is suitable for multi-threaded
1637 applications.  On these systems, support for multi-threading is enabled
1638 by default; use the `no-threads` option to disable (this should never be
1639 necessary).
1640
1641 On other systems, to enable support for multi-threading, you will have
1642 to specify at least two options: `threads`, and a system-dependent option.
1643 (The latter is `-D_REENTRANT` on various systems.)  The default in this
1644 case, obviously, is not to include support for multi-threading (but
1645 you can still use `no-threads` to suppress an annoying warning message
1646 from the `Configure` script.)
1647
1648 OpenSSL provides built-in support for two threading models: pthreads (found on
1649 most UNIX/Linux systems), and Windows threads.  No other threading models are
1650 supported.  If your platform does not provide pthreads or Windows threads then
1651 you should use `Configure` with the `no-threads` option.
1652
1653 Notes on shared libraries
1654 -------------------------
1655
1656 For most systems the OpenSSL `Configure` script knows what is needed to
1657 build shared libraries for libcrypto and libssl.  On these systems
1658 the shared libraries will be created by default.  This can be suppressed and
1659 only static libraries created by using the `no-shared` option.  On systems
1660 where OpenSSL does not know how to build shared libraries the `no-shared`
1661 option will be forced and only static libraries will be created.
1662
1663 Shared libraries are named a little differently on different platforms.
1664 One way or another, they all have the major OpenSSL version number as
1665 part of the file name, i.e.  for OpenSSL 1.1.x, `1.1` is somehow part of
1666 the name.
1667
1668 On most POSIX platforms, shared libraries are named `libcrypto.so.1.1`
1669 and `libssl.so.1.1`.
1670
1671 on Cygwin, shared libraries are named `cygcrypto-1.1.dll` and `cygssl-1.1.dll`
1672 with import libraries `libcrypto.dll.a` and `libssl.dll.a`.
1673
1674 On Windows build with MSVC or using MingW, shared libraries are named
1675 `libcrypto-1_1.dll` and `libssl-1_1.dll` for 32-bit Windows,
1676 `libcrypto-1_1-x64.dll` and `libssl-1_1-x64.dll` for 64-bit x86_64 Windows,
1677 and `libcrypto-1_1-ia64.dll` and `libssl-1_1-ia64.dll` for IA64 Windows.
1678 With MSVC, the import libraries are named `libcrypto.lib` and `libssl.lib`,
1679 while with MingW, they are named `libcrypto.dll.a` and `libssl.dll.a`.
1680
1681 On VMS, shareable images (VMS speak for shared libraries) are named
1682 `ossl$libcrypto0101_shr.exe` and `ossl$libssl0101_shr.exe`.  However, when
1683 OpenSSL is specifically built for 32-bit pointers, the shareable images
1684 are named `ossl$libcrypto0101_shr32.exe` and `ossl$libssl0101_shr32.exe`
1685 instead, and when built for 64-bit pointers, they are named
1686 `ossl$libcrypto0101_shr64.exe` and `ossl$libssl0101_shr64.exe`.
1687
1688 Notes on random number generation
1689 ---------------------------------
1690
1691 Availability of cryptographically secure random numbers is required for
1692 secret key generation.  OpenSSL provides several options to seed the
1693 internal CSPRNG.  If not properly seeded, the internal CSPRNG will refuse
1694 to deliver random bytes and a "PRNG not seeded error" will occur.
1695
1696 The seeding method can be configured using the `--with-rand-seed` option,
1697 which can be used to specify a comma separated list of seed methods.
1698 However, in most cases OpenSSL will choose a suitable default method,
1699 so it is not necessary to explicitly provide this option.  Note also
1700 that not all methods are available on all platforms.  The FIPS provider will
1701 silently ignore seed sources that were not validated.
1702
1703 I) On operating systems which provide a suitable randomness source (in
1704 form  of a system call or system device), OpenSSL will use the optimal
1705 available  method to seed the CSPRNG from the operating system's
1706 randomness sources.  This corresponds to the option `--with-rand-seed=os`.
1707
1708 II) On systems without such a suitable randomness source, automatic seeding
1709 and reseeding is disabled (`--with-rand-seed=none`) and it may be necessary
1710 to install additional support software to obtain a random seed and reseed
1711 the CSPRNG manually.  Please check out the manual pages for `RAND_add()`,
1712 `RAND_bytes()`, `RAND_egd()`, and the FAQ for more information.
1713
1714 <!-- Links  -->
1715
1716 [openssl-users]:
1717     <https://mta.openssl.org/mailman/listinfo/openssl-users>
1718
1719 [SUPPORT]:
1720     ./SUPPORT.md
1721
1722 [GitHub Issues]:
1723     <https://github.com/openssl/openssl/issues>
1724
1725 [raise an issue]:
1726     <https://github.com/openssl/openssl/issues/new/choose>
1727
1728 [10-main.conf]:
1729     Configurations/10-main.conf