-
Notifications
You must be signed in to change notification settings - Fork 830
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
Add enable provider #7550
Add enable provider #7550
Conversation
bdc9d79
to
98cb850
Compare
retest this please |
98cb850
to
e340e41
Compare
The discrepancy shows up when trying to compile with FIPS
e075220
to
7cc42d4
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice catch on the FIPS eccminsz!
configure.ac
Outdated
enable_all_crypto=yes | ||
enable_opensslcoexist=yes | ||
enable_sha=yes | ||
enable_eccminsz=192 | ||
with_max_ecc_bits=1024 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These should be conditional on the user not supplying an override value to configure. E.g.
test -z "$enable_all_crypto" && enable_all_crypto=yes
Notice that --enable-all
, --enable-all-crypto
, and even FIPS dev
or v5-dev
, use similar logic to allow tailoring and testing of different feature combinations. It's understood that some combinations won't work -- if the user forces something, they own the consequences.
Cleaned up how ECC_MIN_SZ gets set. Added in '--enable-wolfprovider' option.