{"id":101224,"date":"2021-09-08T16:23:07","date_gmt":"2021-09-08T14:23:07","guid":{"rendered":"https:\/\/prohoster.info\/blog\/novosti-interneta\/vypusk-kriptograficheskoj-biblioteki-openssl-3-0-0"},"modified":"2021-09-08T16:23:07","modified_gmt":"2021-09-08T14:23:07","slug":"vypusk-kriptograficheskoj-biblioteki-openssl-3-0-0","status":"publish","type":"post","link":"https:\/\/prohoster.info\/en\/blog\/news\/vypusk-kriptograficheskoj-biblioteki-openssl-3-0-0","title":{"rendered":"Release of the cryptographic library OpenSSL 3.0.0","gt_translate_keys":[{"key":"rendered","format":"text"}]},"content":{"rendered":"<p>After three years of development and 19 test releases, OpenSSL 3.0.0 has been released, featuring implementations of the SSL\/TLS protocols and various encryption algorithms. This new branch includes changes that break backward compatibility at the API and ABI levels, but these changes will not affect the operation of most applications, which can be ported from OpenSSL 1.1.1 with a simple rebuild. Support for the previous branch, OpenSSL 1.1.1, will be maintained until September 2023.    <\/p>\n<p>The significant version number change reflects a shift to traditional 'Major.Minor.Patch' numbering. The first digit (Major) will now change only when there is a breaking change in API\/ABI compatibility, while the second digit (Minor) will change with the addition of functionality without altering API\/ABI. Bug-fix updates will be indicated by a change in the third digit (Patch). The number 3.0.0, immediately following 1.1.1, has been chosen to avoid overlaps with the ongoing development of the FIPS module for OpenSSL, which used 2.x numbering.      <\/p>\n<p>The second significant change for the project was the transition from a dual license (OpenSSL and SSLeay) to the Apache 2.0 license. The previously used proprietary OpenSSL license was based on the outdated Apache 1.0 license text and required explicit mention of OpenSSL in promotional materials when using OpenSSL libraries, as well as the addition of a special notice when delivering OpenSSL as part of a product. Such requirements made the old license incompatible with the GPL, creating difficulties when using OpenSSL in GPL-licensed projects. To navigate this GPL incompatibility, GPL projects were forced to adopt specific licensing agreements that supplemented the main GPL text with a clause explicitly allowing linking the application with the OpenSSL library and stating that the GPL requirements do not apply to linking with OpenSSL.         <\/p>\n<p>Compared to the OpenSSL 1.1.1 branch, OpenSSL 3.0.0 has over 7500 changes prepared by 350 developers. Key innovations in OpenSSL 3.0.0:  <\/p>\n<ul>\n<li class=\"l\"> A new FIPS module has been proposed, which includes the implementation of cryptographic algorithms that comply with the FIPS 140-2 security standard (the certification process for the module is expected to start this month, with the FIPS 140-2 certificate anticipated next year). The new module is significantly easier to use, and its integration with various applications will be no more complicated than changing a configuration file. By default, the FIPS module is disabled and requires the enable-fips option to be activated.\n<li class=\"l\"> The concept of plug-in providers has been implemented in libcrypto, replacing the engine concept (the ENGINE API is now deprecated). With providers, you can add your own implementations of algorithms for operations such as encryption, decryption, key generation, MAC computation, and digital signature creation and verification. Both new implementations can be added, as well as alternative implementations of existing supported algorithms (by default, the built-in OpenSSL provider is used for each algorithm).\n<li class=\"l\"> Support for the CMP (Certificate Management Protocol, RFC 4210) has been added, which can be used to request certificates from <a class=\"wpil_keyword_link\" href=\"https:\/\/prohoster.info\/en\/server\/dts-los-angeles\/\"   title=\"server\" data-wpil-keyword-link=\"linked\"  data-wpil-monitor-id=\"3745\">server<\/a> the certificate authority, update certificates, and revoke certificates. Interaction with CMP is done through the new openssl-cmp utility, which also supports the CRMF format (RFC 4211) and request transmission over HTTP\/HTTPS (RFC 6712).\n<li class=\"l\"> A fully functional client for HTTP and HTTPS protocols has been implemented, supporting the GET and POST methods, request redirection, proxy operations, ASN.1 encoding, and timeout handling.\n<li class=\"l\"> A new API, EVP_MAC (Message Authentication Code API), has been added to simplify the addition of new implementations of message authentication codes.\n<li class=\"l\"> A new key formation interface has been proposed \u2014 EVP_KDF (Key Derivation Function API), simplifying the addition of new KDF and PRF implementations. The old API EVP_PKEY, through which scrypt, TLS1 PRF, and HKDF algorithms were available, has been reworked into a layered implementation built on top of the EVP_KDF and EVP_MAC APIs.\n<li class=\"l\"> The TLS protocol implementation allows the use of the TLS kernel support built into Linux for clients and servers to accelerate operations. To use the TLS implementation provided by the Linux kernel, the 'SSL_OP_ENABLE_KTLS' option must be enabled or the 'enable-ktls' setting must be configured.\n<li class=\"l\"> Support for new algorithms has been added:\n<ul>\n<li class=\"l\"> Key derivation algorithms (KDF) \u2014 'SINGLE STEP' and 'SSH'.\n<li class=\"l\"> Message Authentication Code (MAC) algorithms \u2014 'GMAC' and 'KMAC'.\n<li class=\"l\"> RSA Key Encapsulation Method (KEM) algorithm \u2014 'RSASVE'.\n<li class=\"l\"> The 'AES-SIV' encryption algorithm (RFC-8452).\n<li class=\"l\"> The EVP API has added calls supporting inverse ciphers that use the AES algorithm for key encryption (Key Wrap): 'AES-128-WRAP-INV', 'AES-192-WRAP-INV', 'AES-256-WRAP-INV', 'AES-128-WRAP-PAD-INV', 'AES-192-WRAP-PAD-INV', and 'AES-256-WRAP-PAD-INV'.\n<li class=\"l\"> The EVP API has added support for ciphertext borrowing algorithms (CTS): 'AES-128-CBC-CTS', 'AES-192-CBC-CTS', 'AES-256-CBC-CTS', 'CAMELLIA-128-CBC-CTS', 'CAMELLIA-192-CBC-CTS', and 'CAMELLIA-256-CBC-CTS'.\n<li class=\"l\"> Support for CAdES-BES digital signatures (RFC 5126) has been added.\n<li class=\"l\"> In AES_GCM, the AuthEnvelopedData parameter (RFC 5083) has been implemented, allowing messages to be encrypted and decrypted using authenticated and encrypted mode AES GCM.  <\/ul>\n<li class=\"l\"> The public API has been enhanced with functions PKCS7_get_octet_string and PKCS7_type_is_other.\n<li class=\"l\"> In the PKCS#12 API, the default algorithms used in the PKCS12_create() function have been replaced with PBKDF2 and AES, and the SHA-256 algorithm has been used for MAC calculation. To restore previous behavior, the '-legacy' option is available. A large number of new extended calls like PKCS12_*_ex, PKCS5_*_ex, and PKCS8_*_ex have been added, such as PKCS12_add_key_ex(), PKCS12_create_ex(), and PKCS12_decrypt_skey_ex().\n<li class=\"l\"> For the Windows platform, support for thread synchronization using the SRWLock mechanism has been added.\n<li class=\"l\"> A new API for tracing has been added, enabled through the enable-trace parameter.\n<li class=\"l\"> The range of keys supported in EVP_PKEY_public_check() and EVP_PKEY_param_check() functions has been expanded: RSA, DSA, ED25519, X25519, ED448, and X448.\n<li class=\"l\"> The RAND_DRBG subsystem has been removed and replaced with the EVP_RAND API. The FIPS_mode() and FIPS_mode_set() functions have been eliminated.\n<li class=\"l\"> A significant portion of the API has been moved to deprecated status \u2014 using deprecated calls in project code will generate warnings during compilation. Officially declared deprecated are low-level APIs tied to specific algorithm implementations (for example, AES_set_encrypt_key and AES_encrypt). Official support in OpenSSL 3.0.0 is now provided only for high-level EVP APIs, abstracted from individual algorithm types (this API includes functions such as EVP_EncryptInit_ex, EVP_EncryptUpdate, and EVP_EncryptFinal). In one of the upcoming major releases, deprecated APIs will be removed. Implementations of deprecated algorithms like MD2 and DES, available through the EVP API, have been moved to a separate 'legacy' module, which is disabled by default.\n<li class=\"l\"> Documentation and test set have been significantly expanded. Compared to the 1.1.1 branch, the documentation volume has increased by 94%, and the test suite code size by 54%.  <\/ul>\n<p>Source: <a content=\"nofollow\" rel=\"nofollow\" href=\"https:\/\/www.opennet.ru\/opennews\/art.shtml?num=55760\">opennet.ru<\/a> <\/p>","protected":false,"gt_translate_keys":[{"key":"rendered","format":"html"}]},"excerpt":{"rendered":"<p>\u041f\u043e\u0441\u043b\u0435 \u0442\u0440\u0451\u0445 \u043b\u0435\u0442 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u0438 19 \u0442\u0435\u0441\u0442\u043e\u0432\u044b\u0445 \u0432\u044b\u043f\u0443\u0441\u043a\u043e\u0432 \u0441\u043e\u0441\u0442\u043e\u044f\u043b\u0441\u044f \u0440\u0435\u043b\u0438\u0437 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438 OpenSSL 3.0.0 \u0441 \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0435\u0439 \u043f\u0440\u043e\u0442\u043e\u043a\u043e\u043b\u043e\u0432 SSL\/TLS \u0438 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u044b\u0445 \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u043e\u0432 \u0448\u0438\u0444\u0440\u043e\u0432\u0430\u043d\u0438\u044f. \u041d\u043e\u0432\u0430\u044f \u0432\u0435\u0442\u043a\u0430 \u0432\u043a\u043b\u044e\u0447\u0430\u0435\u0442 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f, \u043d\u0430\u0440\u0443\u0448\u0430\u044e\u0449\u0438\u0435 \u043e\u0431\u0440\u0430\u0442\u043d\u0443\u044e \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u043e\u0441\u0442\u044c \u043d\u0430 \u0443\u0440\u043e\u0432\u043d\u0435 API \u0438 ABI, \u043d\u043e \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u043d\u0435 \u043f\u043e\u0432\u043b\u0438\u044f\u044e\u0442 \u043d\u0430 \u0440\u0430\u0431\u043e\u0442\u0443 \u0431\u043e\u043b\u044c\u0448\u0438\u043d\u0441\u0442\u0432\u0430 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0439, \u0434\u043b\u044f \u043f\u0435\u0440\u0435\u0432\u043e\u0434\u0430 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0441 OpenSSL 1.1.1 \u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043f\u0435\u0440\u0435\u0441\u0431\u043e\u0440\u043a\u0438. \u041f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430 \u043f\u0440\u043e\u0448\u043b\u043e\u0439 \u0432\u0435\u0442\u043a\u0438 OpenSSL 1.1.1 \u0431\u0443\u0434\u0435\u0442 [&hellip;]<\/p>\n","protected":false,"gt_translate_keys":[{"key":"rendered","format":"html"}]},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[702],"tags":[],"class_list":["post-101224","post","type-post","status-publish","format-standard","hentry","category-news"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.2 - aioseo.com -->\n\t<meta name=\"description\" content=\"\u041f\u043e\u0441\u043b\u0435 \u0442\u0440\u0451\u0445 \u043b\u0435\u0442 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u0438 19 \u0442\u0435\u0441\u0442\u043e\u0432\u044b\u0445 \u0432\u044b\u043f\u0443\u0441\u043a\u043e\u0432 \u0441\u043e\u0441\u0442\u043e\u044f\u043b\u0441\u044f \u0440\u0435\u043b\u0438\u0437 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438 OpenSSL 3.0.0 \u0441 \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0435\u0439 \u043f\u0440\u043e\u0442\u043e\u043a\u043e\u043b\u043e\u0432 SSL\/TLS \u0438 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u044b\u0445 \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u043e\u0432 \u0448\u0438\u0444\u0440\u043e\u0432\u0430\u043d\u0438\u044f.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Yuri Gagarin\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/prohoster.info\/en\/blog\/news\/vypusk-kriptograficheskoj-biblioteki-openssl-3-0-0\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.2\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"ProHoster | \u041a\u0443\u043f\u0438\u0442\u044c \u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0439 \u0445\u043e\u0441\u0442\u0438\u043d\u0433 \u0434\u043b\u044f \u0441\u0430\u0439\u0442\u043e\u0432 \u0441 \u0437\u0430\u0449\u0438\u0442\u043e\u0439 \u043e\u0442 DDoS, VPS VDS \u0441\u0435\u0440\u0432\u0435\u0440\u044b\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"\ud83e\udd47\u0412\u044b\u043f\u0443\u0441\u043a \u043a\u0440\u0438\u043f\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438 OpenSSL 3.0.0 | ProHoster\" \/>\n\t\t<meta property=\"og:description\" content=\"\u041f\u043e\u0441\u043b\u0435 \u0442\u0440\u0451\u0445 \u043b\u0435\u0442 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u0438 19 \u0442\u0435\u0441\u0442\u043e\u0432\u044b\u0445 \u0432\u044b\u043f\u0443\u0441\u043a\u043e\u0432 \u0441\u043e\u0441\u0442\u043e\u044f\u043b\u0441\u044f \u0440\u0435\u043b\u0438\u0437 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438 OpenSSL 3.0.0 \u0441 \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0435\u0439 \u043f\u0440\u043e\u0442\u043e\u043a\u043e\u043b\u043e\u0432 SSL\/TLS \u0438 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u044b\u0445 \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u043e\u0432 \u0448\u0438\u0444\u0440\u043e\u0432\u0430\u043d\u0438\u044f.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/prohoster.info\/en\/blog\/news\/vypusk-kriptograficheskoj-biblioteki-openssl-3-0-0\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg\" \/>\n\t\t<meta property=\"og:image:width\" content=\"350\" \/>\n\t\t<meta property=\"og:image:height\" content=\"350\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2021-09-08T14:23:07+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2021-09-08T14:23:07+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/prohoster\" \/>\n\t\t<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/prohoster\" \/>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"\ud83e\udd47Release of the OpenSSL 3.0.0 Cryptographic Library | ProHoster","description":"After three years of development and 19 test releases, the OpenSSL 3.0.0 library has been released, implementing SSL\/TLS protocols and various encryption algorithms.","canonical_url":"https:\/\/prohoster.info\/en\/blog\/news\/vypusk-kriptograficheskoj-biblioteki-openssl-3-0-0","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":null,"og:locale":"en_US","og:site_name":"ProHoster | \u041a\u0443\u043f\u0438\u0442\u044c \u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0439 \u0445\u043e\u0441\u0442\u0438\u043d\u0433 \u0434\u043b\u044f \u0441\u0430\u0439\u0442\u043e\u0432 \u0441 \u0437\u0430\u0449\u0438\u0442\u043e\u0439 \u043e\u0442 DDoS, VPS VDS \u0441\u0435\u0440\u0432\u0435\u0440\u044b","og:type":"article","og:title":"\ud83e\udd47\u0412\u044b\u043f\u0443\u0441\u043a \u043a\u0440\u0438\u043f\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438 OpenSSL 3.0.0 | ProHoster","og:description":"\u041f\u043e\u0441\u043b\u0435 \u0442\u0440\u0451\u0445 \u043b\u0435\u0442 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u0438 19 \u0442\u0435\u0441\u0442\u043e\u0432\u044b\u0445 \u0432\u044b\u043f\u0443\u0441\u043a\u043e\u0432 \u0441\u043e\u0441\u0442\u043e\u044f\u043b\u0441\u044f \u0440\u0435\u043b\u0438\u0437 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438 OpenSSL 3.0.0 \u0441 \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0435\u0439 \u043f\u0440\u043e\u0442\u043e\u043a\u043e\u043b\u043e\u0432 SSL\/TLS \u0438 \u0440\u0430\u0437\u043b\u0438\u0447\u043d\u044b\u0445 \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u043e\u0432 \u0448\u0438\u0444\u0440\u043e\u0432\u0430\u043d\u0438\u044f.","og:url":"https:\/\/prohoster.info\/en\/blog\/news\/vypusk-kriptograficheskoj-biblioteki-openssl-3-0-0","og:image":"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg","og:image:secure_url":"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg","og:image:width":350,"og:image:height":350,"article:published_time":"2021-09-08T14:23:07+00:00","article:modified_time":"2021-09-08T14:23:07+00:00","article:publisher":"https:\/\/www.facebook.com\/prohoster","article:author":"https:\/\/www.facebook.com\/prohoster"},"aioseo_meta_data":{"post_id":"101224","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"seo_analyzer_scan_date":null,"breadcrumb_settings":null,"limit_modified_date":false,"reviewed_by":null,"ai":null,"created":"2021-09-08 14:38:48","updated":"2026-02-22 15:30:27","focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"gt_translate_keys":[{"key":"link","format":"url"}],"_links":{"self":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/101224","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/comments?post=101224"}],"version-history":[{"count":1,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/101224\/revisions"}],"predecessor-version":[{"id":162273,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/101224\/revisions\/162273"}],"wp:attachment":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/media?parent=101224"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/categories?post=101224"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/tags?post=101224"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}