diff options
author | Pauli <paul.dale@oracle.com> | 2020-04-02 06:37:26 +0200 |
---|---|---|
committer | Pauli <paul.dale@oracle.com> | 2020-04-17 11:51:37 +0200 |
commit | c1e48c5171affd99111fd08e7a0a7e1a76121138 (patch) | |
tree | 0d4950fd0e0bd1ca1979e6f731a7efd65f6b9feb /crypto/s390x_arch.h | |
parent | ecx: add key generation support. (diff) | |
download | openssl-c1e48c5171affd99111fd08e7a0a7e1a76121138.tar.xz openssl-c1e48c5171affd99111fd08e7a0a7e1a76121138.zip |
s390: ECX key generation fixes.
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/11371)
Diffstat (limited to 'crypto/s390x_arch.h')
-rw-r--r-- | crypto/s390x_arch.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/crypto/s390x_arch.h b/crypto/s390x_arch.h index 0123de9477..c20fc342f6 100644 --- a/crypto/s390x_arch.h +++ b/crypto/s390x_arch.h @@ -33,6 +33,23 @@ int s390x_kdsa(unsigned int fc, void *param, const unsigned char *in, void s390x_flip_endian32(unsigned char dst[32], const unsigned char src[32]); void s390x_flip_endian64(unsigned char dst[64], const unsigned char src[64]); +int s390x_x25519_mul(unsigned char u_dst[32], + const unsigned char u_src[32], + const unsigned char d_src[32]); +int s390x_x448_mul(unsigned char u_dst[56], + const unsigned char u_src[56], + const unsigned char d_src[56]); +int s390x_ed25519_mul(unsigned char x_dst[32], + unsigned char y_dst[32], + const unsigned char x_src[32], + const unsigned char y_src[32], + const unsigned char d_src[32]); +int s390x_ed448_mul(unsigned char x_dst[57], + unsigned char y_dst[57], + const unsigned char x_src[57], + const unsigned char y_src[57], + const unsigned char d_src[57]); + /* * The field elements of OPENSSL_s390xcap_P are the 64-bit words returned by * the STFLE instruction followed by the 64-bit word pairs returned by |