-
Notifications
You must be signed in to change notification settings - Fork 211
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
Fix symcrypt errors in crypto_test #6593
Comments
Ok, seems like all the output is from these two testcases
Both test negative scenarios, one is corrupting a signature, another is using a wrong curve. |
Both tests try out
The corrupted signature produces error msgs for boths, however |
Errors from
From From CCF perspective, all produced here. That seems logical, now the question is - do we want them to be there in production or shall we look for suppression mechanisms? My opinion - we don't failure scenarios, so we can keep those, as they may be useful and shall not be populated to often. Would like to hear more opinions, @eddyashton, @achamayou |
We want to suppress these in production - we handle the failure ourselves and don't want to see symcrypt's internal logging. It's fine if they remain for debug builds, where there's a chance they're eventually useful. |
Looked for ways to shut it up, seems like there's this function but I don't see a header under I wonder if there's a way to access it via symcrypt somehow?.. |
@maxtropets might need to install a symcrypt-devel or similarly named to get the relevant header |
SO far
We could've defined I wonder if there is a way to defer the linkage to runtime until symcrypt is loaded?. |
The text was updated successfully, but these errors were encountered: