-
-
Notifications
You must be signed in to change notification settings - Fork 10.5k
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
s390x assembly pack: add z15 hw support for X25519,X448,Ed25519,Ed448 #10004
Conversation
typedef int sk_cmp_fn_type(const char *const *a, const char *const *b); | ||
|
||
static STACK_OF(EVP_PKEY_METHOD) *app_pkey_methods = NULL; | ||
|
||
/* This array needs to be in order of NIDs */ | ||
static const EVP_PKEY_METHOD *standard_methods[] = { | ||
static pmeth_fn standard_methods[] = { |
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.
This surprised me. It's not immediately obvious why the extra indirection of a function call is better, or makes any actual difference... Care to explain?
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.
It enables architecture specific implementation of the pkey methods: The function returns a pointer to the architecture specific pkey method struct if the corresponding processor capabilities are detected. Otherwise, a pointer to the original pkey method struct is returned.
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.
Its similar to the implementation of switching between different EC_METHODs for the same curve: curve_list in ec_curve.c holds function pointers for each curve, and the functions will return a pointer to an appropriate EC_METHOD.
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.
Ah! Ok, that makes sense.
Signed-off-by: Patrick Steuer <[email protected]>
Signed-off-by: Patrick Steuer <[email protected]>
of instruction parameter blocks. Signed-off-by: Patrick Steuer <[email protected]>
7cb2b87
to
d483f6e
Compare
rebased |
d483f6e
to
8abcf91
Compare
addressed travis failure. |
ff3ca1c
to
251bd1a
Compare
using PCC and KDSA instructions. Signed-off-by: Patrick Steuer <[email protected]>
251bd1a
to
cb12514
Compare
looks like appveyor is hanging. is it possible to trigger it again ? |
Signed-off-by: Patrick Steuer <[email protected]> Reviewed-by: Richard Levitte <[email protected]> (Merged from #10004)
Signed-off-by: Patrick Steuer <[email protected]> Reviewed-by: Richard Levitte <[email protected]> (Merged from #10004)
of instruction parameter blocks. Signed-off-by: Patrick Steuer <[email protected]> Reviewed-by: Richard Levitte <[email protected]> (Merged from #10004)
using PCC and KDSA instructions. Signed-off-by: Patrick Steuer <[email protected]> Reviewed-by: Richard Levitte <[email protected]> (Merged from #10004)
merged to master. |
using PCC and KDSA instructions. Signed-off-by: Patrick Steuer <[email protected]> Reviewed-by: Richard Levitte <[email protected]> (Merged from openssl#10004) Signed-off-by: Patrick Steuer <[email protected]>
Signed-off-by: Patrick Steuer <[email protected]> Reviewed-by: Richard Levitte <[email protected]> (Merged from openssl#10004) (cherry picked from commit b3681e2) Signed-off-by: Dimitri John Ledkov <[email protected]>
Signed-off-by: Patrick Steuer <[email protected]> Reviewed-by: Richard Levitte <[email protected]> (Merged from openssl#10004) (cherry picked from commit b3681e2) Signed-off-by: Dimitri John Ledkov <[email protected]>
Signed-off-by: Patrick Steuer <[email protected]> Reviewed-by: Richard Levitte <[email protected]> (Merged from openssl#10004) (cherry picked from commit ac037dc) Signed-off-by: Dimitri John Ledkov <[email protected]>
using PCC and KDSA instructions. Signed-off-by: Patrick Steuer <[email protected]> Reviewed-by: Richard Levitte <[email protected]> (Merged from openssl#10004) Signed-off-by: Patrick Steuer <[email protected]> (cherry picked from commit 56eb364ef5cf93e2658cd45fcffee435b80857b2) Signed-off-by: Dimitri John Ledkov <[email protected]>
Signed-off-by: Patrick Steuer <[email protected]> Reviewed-by: Richard Levitte <[email protected]> (Merged from openssl#10004) (cherry picked from commit b3681e2) Signed-off-by: Dimitri John Ledkov <[email protected]>
Signed-off-by: Patrick Steuer <[email protected]> Reviewed-by: Richard Levitte <[email protected]> (Merged from openssl#10004) (cherry picked from commit ac037dc) Signed-off-by: Dimitri John Ledkov <[email protected]>
using PCC and KDSA instructions. Signed-off-by: Patrick Steuer <[email protected]> Reviewed-by: Richard Levitte <[email protected]> (Merged from openssl#10004) Signed-off-by: Patrick Steuer <[email protected]> (cherry picked from commit 56eb364ef5cf93e2658cd45fcffee435b80857b2) Signed-off-by: Dimitri John Ledkov <[email protected]>
edit: There are 3 small fixes in front. Since they are only relevant to master, i chose to include them in this feature PR.