-
Notifications
You must be signed in to change notification settings - Fork 851
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added OpenSSL EVP API support to HaiCrypt (--use-enclib=openssl-evp). #2333
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Changes to CRYSPR framework required (-DCRYSPR2). cryspr for openssl and openssl-evp tested cryspr for gnutls and mbedtls upgraded for CRYSPR2 but not compiled nor tested with -DCRYSPR2 both can still be built with/without -DCRYSPR2.
maxsharabayko
added
Type: Enhancement
Indicates new feature requests
[core]
Area: Changes in SRT library core
labels
May 12, 2022
Reviewer Notes (In Progress)
|
ethouris
reviewed
May 19, 2022
Get rid of Cryspr method difference if !CRYSPR2
A patch to add index 8c87229c..bd20501a 100644
--- a/docs/build/build-options.md
+++ b/docs/build/build-options.md
@@ -58,7 +58,7 @@ Option details are given further below.
| [`PTHREAD_LIBRARY`](#pthread_library) | 1.3.0 | `STRING` | OFF | Configures the path to a pthread library. |
| [`USE_BUSY_WAITING`](#use_busy_waiting) | 1.3.3 | `BOOL` | OFF | Enables more accurate sending times at the cost of potentially higher CPU load. |
| [`USE_CXX_STD`](#use_cxx_std) | 1.4.2 | `STRING` | OFF | Enforces using a particular C++ standard (11, 14, 17, etc.) when compiling. |
-| [`USE_ENCLIB`](#use_enclib) | 1.3.3 | `STRING` | openssl | Encryption library to be used (`openssl`, `gnutls`, `mbedtls`). |
+| [`USE_ENCLIB`](#use_enclib) | 1.3.3 | `STRING` | openssl | Encryption library to be used (`openssl`, `openssl-evp`, `gnutls`, `mbedtls`). |
| [`USE_GNUSTL`](#use_gnustl) | 1.3.4 | `BOOL` | OFF | Use `pkg-config` with the `gnustl` package name to extract the header and library path for the C++ standard library. |
| [`USE_OPENSSL_PC`](#use_openssl_pc) | 1.3.0 | `BOOL` | ON | Use `pkg-config` to find OpenSSL libraries. |
| [`OPENSSL_USE_STATIC_LIBS`](#openssl_use_static_libs) | 1.5.0 | `BOOL` | OFF | Link OpenSSL statically. |
@@ -534,6 +534,7 @@ remember that:
Encryption library to be used. Possible options for `<name>`:
* openssl (default)
+* openssl-evp (OpenSSL EVP API)
* gnutls (with nettle)
* mbedtls |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Changes to CRYSPR framework required (-DCRYSPR2).
cryspr for openssl and openssl-evp tested
cryspr for gnutls and mbedtls upgraded for CRYSPR2 but not compiled nor tested with -DCRYSPR2
both can still be built with/without -DCRYSPR2.
Fixes #2141.