openssl/test/recipes
Richard Levitte 3a63dbef15 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-12-06 12:24:47 +01:00
..
04-test_pem_data Add AGL's "beer mug" PEM file as another test input 2017-02-28 21:23:26 +01:00
10-test_bn_data Move bn and evp test programs input data to their respective data dir 2017-06-15 19:46:24 +02:00
15-test_ecparam_data Improve testing of elliptic curve validation 2017-03-20 06:40:16 +01:00
15-test_mp_rsa_data Support multi-prime RSA (RFC 8017) 2017-11-21 14:38:42 +08:00
30-test_evp_data Add an Ed25519 signature maleability test 2018-12-03 14:21:05 +00:00
80-test_ocsp_data Add OCSP API test executable 2017-11-11 20:03:49 -06:00
90-test_gost_data Add a GOST test 2018-07-13 18:14:43 +01:00
90-test_includes_data CONF inclusion test: Add VMS specific tests 2018-03-12 23:01:02 +01:00
90-test_sslapi_data Add a test for SRP 2018-04-13 09:37:39 +01:00
90-test_store_data STORE tests: add PKCS#12 tests 2017-06-29 11:55:31 +02:00
95-test_external_krb5_data Add external krb5 test support 2017-04-18 19:10:25 +02:00
95-test_external_pyca_data Correct Oracle copyrights & clarify. 2017-06-15 15:50:50 +10:00
01-test_abort.t tests: Shut the shell up unless verbose 2016-06-06 10:03:01 +02:00
01-test_sanity.t Platform sanity test 2016-07-08 15:56:55 -04:00
01-test_symbol_presence.t Update copyright year 2018-11-20 13:26:47 +00:00
01-test_test.t Correct Oracle copyrights & clarify. 2017-06-15 15:50:50 +10:00
02-test_errstr.t Don't test the collected system errors when configured to not have them 2018-11-27 09:01:35 +00:00
02-test_internal_ctype.t Update copyright year 2018-11-20 13:26:47 +00:00
02-test_lhash.t Correct Oracle copyrights & clarify. 2017-06-15 15:50:50 +10:00
02-test_ordinals.t Reset executable bits on files where not needed. 2017-03-03 09:13:40 +01:00
02-test_stack.t Correct Oracle copyrights & clarify. 2017-06-15 15:50:50 +10:00
03-test_exdata.t Exdata test was never enabled. 2017-02-28 13:50:40 -05:00
03-test_internal_asn1.t Update copyright year 2018-11-20 13:26:47 +00:00
03-test_internal_chacha.t Update copyright year 2018-11-20 13:26:47 +00:00
03-test_internal_curve448.t Test: enable internal tests for shared Windows builds 2018-11-08 16:27:24 +01:00
03-test_internal_mdc2.t Split test/recipes/03_test_internal.t into individual tests 2017-03-10 20:18:56 +01:00
03-test_internal_modes.t Update copyright year 2018-11-20 13:26:47 +00:00
03-test_internal_poly1305.t Update copyright year 2018-11-20 13:26:47 +00:00
03-test_internal_siphash.t Update copyright year 2018-11-20 13:26:47 +00:00
03-test_internal_sm2.t Test: enable internal tests for shared Windows builds 2018-11-08 16:27:24 +01:00
03-test_internal_sm4.t Test: enable internal tests for shared Windows builds 2018-11-08 16:27:24 +01:00
03-test_internal_ssl_cert_table.t Update copyright year 2018-11-20 13:26:47 +00:00
03-test_internal_x509.t Update copyright year 2018-11-20 13:26:47 +00:00
03-test_ui.t Add a test "uitest" 2017-01-11 18:27:27 +01:00
04-test_asn1_decode.t Update copyright year 2018-09-11 13:45:17 +01:00
04-test_asn1_encode.t Add a test of encoding and decoding LONG, INT32, UINT32, INT64 and UINT64 2017-04-04 11:29:23 +02:00
04-test_asn1_string_table.t Add test cases and docs for ASN1_STRING_TABLE_* functions 2017-07-26 20:06:51 +02:00
04-test_bio_callback.t Fix bio callback backward compatibility 2018-03-19 14:20:53 +01:00
04-test_bioprint.t Convert more tests to framework 2017-04-18 14:50:00 -04:00
04-test_err.t Save and restore the Windows error around TlsGetValue. 2018-05-23 17:34:54 -04:00
04-test_pem.t Avoid unnecessary MSYS2 conversion of some arguments 2017-11-22 00:37:34 +01:00
05-test_bf.t Unified copyright for test recipes 2016-04-22 07:58:47 -04:00
05-test_cast.t Unified copyright for test recipes 2016-04-22 07:58:47 -04:00
05-test_des.t Unified copyright for test recipes 2016-04-22 07:58:47 -04:00
05-test_hmac.t Unified copyright for test recipes 2016-04-22 07:58:47 -04:00
05-test_idea.t Unified copyright for test recipes 2016-04-22 07:58:47 -04:00
05-test_md2.t Unified copyright for test recipes 2016-04-22 07:58:47 -04:00
05-test_mdc2.t Unified copyright for test recipes 2016-04-22 07:58:47 -04:00
05-test_rand.t Update copyright year 2018-04-03 13:57:12 +01:00
05-test_rc2.t Unified copyright for test recipes 2016-04-22 07:58:47 -04:00
05-test_rc4.t Revert rc4test removal, it performs additional tests not in evptests.txt 2017-02-28 16:08:42 +00:00
05-test_rc5.t Unified copyright for test recipes 2016-04-22 07:58:47 -04:00
06-test-rdrand.t Test: enable internal tests for shared Windows builds 2018-11-08 16:27:24 +01:00
10-test_bn.t Move bn and evp test programs input data to their respective data dir 2017-06-15 19:46:24 +02:00
10-test_exp.t Unified copyright for test recipes 2016-04-22 07:58:47 -04:00
15-test_dh.t Unified copyright for test recipes 2016-04-22 07:58:47 -04:00
15-test_dsa.t Update copyright year 2018-09-11 13:45:17 +01:00
15-test_ec.t Unified copyright for test recipes 2016-04-22 07:58:47 -04:00
15-test_ecdsa.t Unified copyright for test recipes 2016-04-22 07:58:47 -04:00
15-test_ecparam.t File::Glob option ':bsd_glob' doesn't work everywhere, replace w/ a wrapper 2017-08-15 11:31:18 +02:00
15-test_genrsa.t Update copyright year 2018-04-17 15:18:40 +02:00
15-test_mp_rsa.t rsa/rsa_gen.c: harmonize keygen's ability with RSA_security_bits. 2017-11-28 20:05:48 +01:00
15-test_out_option.t 15-test_out_option: Refactor and don't test directory write on VMS 2018-04-26 21:19:49 +02:00
15-test_rsa.t Don't run MSBLOB conversion tests when RSA or DSA are disabled 2017-01-04 15:29:03 +01:00
15-test_rsapss.t Rather use -out parameter than redirect stdout 2017-03-14 17:21:24 +01:00
20-test_enc.t Adapt 20-test_enc.t and 20-test_enc_more.t to use statusvar 2017-03-21 16:12:29 +01:00
20-test_enc_more.t Correct Oracle copyrights & clarify. 2017-06-15 15:50:50 +10:00
20-test_passwd.t 'openssl passwd' command can now compute AIX MD5-based passwords hashes. 2017-01-21 10:44:23 -05:00
25-test_crl.t Switch command-line utils to new nameopt API. 2017-04-25 12:37:17 -04:00
25-test_d2i.t Fix no-cms (CVE-2016-7053) 2016-11-10 13:04:11 +00:00
25-test_pkcs7.t Unified copyright for test recipes 2016-04-22 07:58:47 -04:00
25-test_req.t Update copyright year 2018-09-11 13:45:17 +01:00
25-test_sid.t Add needed module in 25-test_sid.t 2017-02-09 11:12:06 +01:00
25-test_verify.t Update copyright year 2018-05-29 13:16:04 +01:00
25-test_x509.t Add test for -nameout output 2017-03-14 15:18:07 -04:00
30-test_afalg.t Update copyright year 2018-02-13 13:59:25 +00:00
30-test_engine.t Unified copyright for test recipes 2016-04-22 07:58:47 -04:00
30-test_evp.t Update copyright year 2018-09-11 13:45:17 +01:00
30-test_evp_extra.t Unified copyright for test recipes 2016-04-22 07:58:47 -04:00
30-test_pbelu.t Unified copyright for test recipes 2016-04-22 07:58:47 -04:00
30-test_pkey_meth.t Add test to check EVP_PKEY method ordering. 2016-11-20 00:22:02 +00:00
30-test_pkey_meth_kdf.t Add PKEY_METHOD macro tests 2017-08-08 15:44:49 +01:00
40-test_rehash.t Update copyright year 2018-02-13 13:59:25 +00:00
60-test_x509_check_cert_pkey.t Fix no-dsa build again 2017-06-24 21:46:36 -05:00
60-test_x509_dup_cert.t Correct Oracle copyrights & clarify. 2017-06-15 15:50:50 +10:00
60-test_x509_store.t Fix test_x509_store 2017-02-17 14:59:44 +01:00
60-test_x509_time.t X509 time: tighten validation per RFC 5280 2017-02-24 17:37:08 +01:00
70-test_asyncio.t Test recipes: remove duplicate OpenSSL::Test usage 2016-11-02 18:14:04 +01:00
70-test_bad_dtls.t Add basic test for Cisco DTLS1_BAD_VER and record replay handling 2016-08-04 20:56:24 +01:00
70-test_clienthello.t Add tests for the padding extension 2017-03-16 15:37:41 +00:00
70-test_comp.t Update copyright year 2018-02-13 13:59:25 +00:00
70-test_key_share.t Update copyright year 2018-02-13 13:59:25 +00:00
70-test_packet.t Unified copyright for test recipes 2016-04-22 07:58:47 -04:00
70-test_recordlen.t Add a test to check that we correctly handle record overflows 2017-03-06 20:07:40 +00:00
70-test_renegotiation.t Add a test to verify the ClientHello version is the same in a reneg 2018-04-24 09:54:31 +01:00
70-test_servername.t Update copyright year 2018-09-11 13:45:17 +01:00
70-test_sslcbcpadding.t recipes/70-test_ssl{cbcpadding,extension,records}: make it work w/fragmentation. 2018-04-18 19:57:54 +02:00
70-test_sslcertstatus.t Update code for the final RFC version of TLSv1.3 (RFC8446) 2018-08-15 12:33:30 +01:00
70-test_sslextension.t recipes/70-test_ssl{cbcpadding,extension,records}: make it work w/fragmentation. 2018-04-18 19:57:54 +02:00
70-test_sslmessages.t Update copyright year 2018-02-13 13:59:25 +00:00
70-test_sslrecords.t recipes/70-test_ssl{cbcpadding,extension,records}: make it work w/fragmentation. 2018-04-18 19:57:54 +02:00
70-test_sslsessiontick.t Update copyright year 2018-02-13 13:59:25 +00:00
70-test_sslsigalgs.t Add a test for mismatch between key OID and sig alg 2018-07-18 09:58:56 +01:00
70-test_sslsignature.t Update copyright year 2018-02-13 13:59:25 +00:00
70-test_sslskewith0p.t Update copyright year 2018-02-13 13:59:25 +00:00
70-test_sslversions.t Fix a bug in test_sslversions 2018-08-15 12:33:30 +01:00
70-test_sslvertol.t Update copyright year 2018-02-13 13:59:25 +00:00
70-test_tls13alerts.t Add a test for unencrypted alert 2018-08-08 10:16:58 +01:00
70-test_tls13cookie.t Update copyright year 2018-02-13 13:59:25 +00:00
70-test_tls13downgrade.t Don't detect a downgrade where the server has a protocol version hole 2018-08-22 15:15:19 +01:00
70-test_tls13hrr.t Split configuration of TLSv1.3 ciphers from older ciphers 2018-03-14 10:15:50 +00:00
70-test_tls13kexmodes.t Update copyright year 2018-02-13 13:59:25 +00:00
70-test_tls13messages.t Change Post Handshake auth so that it is opt-in 2018-08-20 15:14:01 +01:00
70-test_tls13psk.t Fix miscellaneous typos in docs and source 2018-03-17 18:24:03 +01:00
70-test_tlsextms.t Update copyright year 2018-02-13 13:59:25 +00:00
70-test_verify_extra.t Unified copyright for test recipes 2016-04-22 07:58:47 -04:00
70-test_wpacket.t Enable wpacket test on shared builds 2017-01-30 10:18:24 +00:00
80-test_ca.t Add random serial# support. 2017-08-22 09:00:04 -04:00
80-test_cipherbytes.t Tests for SSL_bytes_to_cipher_list() 2017-02-23 19:40:25 +01:00
80-test_cipherlist.t Switch to MAJOR.MINOR.PATCH versioning and version 3.0.0-dev 2018-12-06 12:24:47 +01:00
80-test_ciphername.t Support converting cipher name to RFC name and vice versa 2017-07-21 07:20:14 +10:00
80-test_cms.t no-ec2m fixes 2017-08-10 16:48:47 +01:00
80-test_cmsapi.t Add a CMS API test 2018-05-08 08:43:39 +01:00
80-test_ct.t Unified copyright for test recipes 2016-04-22 07:58:47 -04:00
80-test_dane.t Unified copyright for test recipes 2016-04-22 07:58:47 -04:00
80-test_dtls.t Test recipes: remove duplicate OpenSSL::Test usage 2016-11-02 18:14:04 +01:00
80-test_dtls_mtu.t Add test cases for DTLS_get_data_mtu() 2016-11-02 14:00:11 +00:00
80-test_dtlsv1listen.t Unified copyright for test recipes 2016-04-22 07:58:47 -04:00
80-test_ocsp.t Add OCSP API test executable 2017-11-11 20:03:49 -06:00
80-test_pkcs12.t Update copyright year 2018-02-27 13:59:42 +00:00
80-test_ssl_new.t Fix no-ec and no-tls1_2 2018-11-14 11:28:01 +00:00
80-test_ssl_old.t Split configuration of TLSv1.3 ciphers from older ciphers 2018-03-14 10:15:50 +00:00
80-test_ssl_test_ctx.t Unified copyright for test recipes 2016-04-22 07:58:47 -04:00
80-test_sslcorrupt.t Fix the no-tls option 2016-11-10 13:04:11 +00:00
80-test_tsa.t test/recipes/80-test_tsa.t: Don't trust 'OPENSSL_CONF' 2017-07-24 11:50:46 +02:00
80-test_x509aux.t Fix i2d_X509_AUX, update docs and add tests 2016-05-11 01:46:06 -04:00
90-test_asn1_time.t Consolidate to a single asn1_time_from_tm() function 2017-08-04 11:24:03 +10:00
90-test_async.t Unified copyright for test recipes 2016-04-22 07:58:47 -04:00
90-test_bio_enc.t Add test/bio_enc_test.c. 2016-08-21 23:34:26 +02:00
90-test_constant_time.t Unified copyright for test recipes 2016-04-22 07:58:47 -04:00
90-test_fatalerr.t Add a test for CVE-2017-3737 2017-12-06 15:37:49 +00:00
90-test_gmdiff.t Unified copyright for test recipes 2016-04-22 07:58:47 -04:00
90-test_gost.t Skip the GOST test where appropriate 2018-07-17 11:57:46 +01:00
90-test_ige.t Unified copyright for test recipes 2016-04-22 07:58:47 -04:00
90-test_includes.t CONF inclusion test: Add VMS specific tests 2018-03-12 23:01:02 +01:00
90-test_memleak.t Unified copyright for test recipes 2016-04-22 07:58:47 -04:00
90-test_overhead.t Add unit test for ssl_cipher_get_overhead() 2016-11-02 14:00:11 +00:00
90-test_secmem.t Unified copyright for test recipes 2016-04-22 07:58:47 -04:00
90-test_shlibload.t Switch to MAJOR.MINOR.PATCH versioning and version 3.0.0-dev 2018-12-06 12:24:47 +01:00
90-test_srp.t Unified copyright for test recipes 2016-04-22 07:58:47 -04:00
90-test_sslapi.t Update copyright year 2018-04-17 15:18:40 +02:00
90-test_sslbuffers.t Add support to free/allocate SSL buffers 2017-07-26 11:42:17 -04:00
90-test_store.t OSSL_STORE: don't test file: URIs on Mingw 2018-05-30 16:10:42 +02:00
90-test_sysdefault.t Update copyright year 2018-03-20 13:08:46 +00:00
90-test_threads.t Reset executable bits on files where not needed. 2017-03-03 09:13:40 +01:00
90-test_time_offset.t Fix time offset calculation. 2017-05-02 10:38:54 +02:00
90-test_tls13ccs.t Don't run the TLSv1.3 CCS tests if TLSv1.3 is not enabled 2017-12-14 15:06:38 +00:00
90-test_tls13encryption.t Test: enable internal tests for shared Windows builds 2018-11-08 16:27:24 +01:00
90-test_tls13secrets.t Add a test for the TLS1.3 secret generation 2016-11-09 14:08:14 +00:00
90-test_v3name.t Unified copyright for test recipes 2016-04-22 07:58:47 -04:00
95-test_external_boringssl.t Rearrange test/recipes/95-test_*.t to use skip_all 2017-05-05 23:10:41 +02:00
95-test_external_krb5.t test/recipes/95-test_*.t : correct skip_all syntax 2017-05-06 10:29:16 +02:00
95-test_external_pyca.t test/recipes/95-test_*.t : correct skip_all syntax 2017-05-06 10:29:16 +02:00
99-test_ecstress.t Add ecstress test 2017-06-21 09:24:01 -04:00
99-test_fuzz.t Update copyright year 2018-04-03 13:57:12 +01:00
ocsp-response.der Extend test_tls13messages 2016-11-23 15:31:21 +00:00
tconversion.pl Consolidate the locations where we have our internal perl modules 2017-08-15 11:30:47 +02:00