-
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
Srtp kdf optest #7470
Srtp kdf optest #7470
Changes from all commits
49e9c06
766c3b5
673c599
82d9a7b
a365d38
a9511e1
7047991
6719909
fa08e2c
76527c3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,6 +43,10 @@ | |
WOLFSSL_LOCAL int wolfCrypt_FIPS_HMAC_sanity(void); | ||
#endif | ||
|
||
#if FIPS_VERSION3_GE(6,0,0) | ||
#define FIPS_ALLOW_SHORT 1 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should this new FIPS macro include HMAC in the name? Would be nice if There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. By design. |
||
#endif | ||
|
||
/* avoid redefinition of structs */ | ||
#if !defined(HAVE_FIPS) || FIPS_VERSION3_GE(2,0,0) | ||
|
||
|
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.
Is this "warning" sufficient? Won't be noticed unless DEBUG_WOLFSSL is set. Should it return a new error code?
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.
Yes this is sufficient per the comment this is not enforceable.