7d1228
diff -up openssl-1.1.1g/Configurations/00-base-templates.conf.s390x-ecc openssl-1.1.1g/Configurations/00-base-templates.conf
7d1228
--- openssl-1.1.1g/Configurations/00-base-templates.conf.s390x-ecc	2020-04-21 14:22:39.000000000 +0200
7d1228
+++ openssl-1.1.1g/Configurations/00-base-templates.conf	2020-05-18 12:45:40.855234262 +0200
067bfb
@@ -289,6 +289,7 @@ my %targets=(
067bfb
 	template	=> 1,
067bfb
 	cpuid_asm_src   => "s390xcap.c s390xcpuid.S",
067bfb
 	bn_asm_src      => "asm/s390x.S s390x-mont.S s390x-gf2m.s",
067bfb
+	ec_asm_src      => "ecp_s390x_nistp.c",
067bfb
 	aes_asm_src     => "aes-s390x.S aes-ctr.fake aes-xts.fake",
067bfb
 	sha1_asm_src    => "sha1-s390x.S sha256-s390x.S sha512-s390x.S",
067bfb
 	rc4_asm_src     => "rc4-s390x.s",
7d1228
diff -up openssl-1.1.1g/Configure.s390x-ecc openssl-1.1.1g/Configure
7d1228
--- openssl-1.1.1g/Configure.s390x-ecc	2020-05-18 12:45:40.781233618 +0200
7d1228
+++ openssl-1.1.1g/Configure	2020-05-18 12:45:40.856234270 +0200
7d1228
@@ -1398,6 +1398,9 @@ unless ($disabled{asm}) {
067bfb
     if ($target{ec_asm_src} =~ /ecp_nistz256/) {
067bfb
         push @{$config{lib_defines}}, "ECP_NISTZ256_ASM";
067bfb
     }
067bfb
+    if ($target{ec_asm_src} =~ /ecp_s390x_nistp/) {
067bfb
+        push @{$config{lib_defines}}, "S390X_EC_ASM";
067bfb
+    }
067bfb
     if ($target{ec_asm_src} =~ /x25519/) {
067bfb
         push @{$config{lib_defines}}, "X25519_ASM";
067bfb
     }
7d1228
diff -up openssl-1.1.1g/crypto/cmac/cm_pmeth.c.s390x-ecc openssl-1.1.1g/crypto/cmac/cm_pmeth.c
7d1228
--- openssl-1.1.1g/crypto/cmac/cm_pmeth.c.s390x-ecc	2020-05-18 12:45:40.782233627 +0200
7d1228
+++ openssl-1.1.1g/crypto/cmac/cm_pmeth.c	2020-05-18 12:45:42.661249957 +0200
067bfb
@@ -159,3 +159,8 @@ const EVP_PKEY_METHOD cmac_pkey_meth = {
067bfb
     pkey_cmac_ctrl,
067bfb
     pkey_cmac_ctrl_str
067bfb
 };
067bfb
+
067bfb
+const EVP_PKEY_METHOD *cmac_pkey_method(void)
067bfb
+{
067bfb
+    return &cmac_pkey_meth;
067bfb
+}
7d1228
diff -up openssl-1.1.1g/crypto/dh/dh_pmeth.c.s390x-ecc openssl-1.1.1g/crypto/dh/dh_pmeth.c
7d1228
--- openssl-1.1.1g/crypto/dh/dh_pmeth.c.s390x-ecc	2020-05-18 12:45:40.782233627 +0200
7d1228
+++ openssl-1.1.1g/crypto/dh/dh_pmeth.c	2020-05-18 12:45:42.661249957 +0200
067bfb
@@ -512,6 +512,11 @@ const EVP_PKEY_METHOD dh_pkey_meth = {
067bfb
     pkey_dh_ctrl_str
067bfb
 };
067bfb
 
067bfb
+const EVP_PKEY_METHOD *dh_pkey_method(void)
067bfb
+{
067bfb
+    return &dh_pkey_meth;
067bfb
+}
067bfb
+
067bfb
 const EVP_PKEY_METHOD dhx_pkey_meth = {
067bfb
     EVP_PKEY_DHX,
067bfb
     EVP_PKEY_FLAG_FIPS,
067bfb
@@ -545,3 +550,8 @@ const EVP_PKEY_METHOD dhx_pkey_meth = {
067bfb
     pkey_dh_ctrl,
067bfb
     pkey_dh_ctrl_str
067bfb
 };
067bfb
+
067bfb
+const EVP_PKEY_METHOD *dhx_pkey_method(void)
067bfb
+{
067bfb
+    return &dhx_pkey_meth;
067bfb
+}
7d1228
diff -up openssl-1.1.1g/crypto/dsa/dsa_pmeth.c.s390x-ecc openssl-1.1.1g/crypto/dsa/dsa_pmeth.c
7d1228
--- openssl-1.1.1g/crypto/dsa/dsa_pmeth.c.s390x-ecc	2020-05-18 12:45:40.783233636 +0200
7d1228
+++ openssl-1.1.1g/crypto/dsa/dsa_pmeth.c	2020-05-18 12:45:42.662249966 +0200
7d1228
@@ -271,3 +271,8 @@ const EVP_PKEY_METHOD dsa_pkey_meth = {
067bfb
     pkey_dsa_ctrl,
067bfb
     pkey_dsa_ctrl_str
067bfb
 };
067bfb
+
067bfb
+const EVP_PKEY_METHOD *dsa_pkey_method(void)
067bfb
+{
067bfb
+    return &dsa_pkey_meth;
067bfb
+}
7d1228
diff -up openssl-1.1.1g/crypto/ec/build.info.s390x-ecc openssl-1.1.1g/crypto/ec/build.info
7d1228
--- openssl-1.1.1g/crypto/ec/build.info.s390x-ecc	2020-04-21 14:22:39.000000000 +0200
7d1228
+++ openssl-1.1.1g/crypto/ec/build.info	2020-05-18 12:45:42.662249966 +0200
067bfb
@@ -26,6 +26,9 @@ GENERATE[ecp_nistz256-armv8.S]=asm/ecp_n
067bfb
 INCLUDE[ecp_nistz256-armv8.o]=..
067bfb
 GENERATE[ecp_nistz256-ppc64.s]=asm/ecp_nistz256-ppc64.pl $(PERLASM_SCHEME)
067bfb
 
067bfb
+INCLUDE[ecp_s390x_nistp.o]=..
067bfb
+INCLUDE[ecx_meth.o]=..
067bfb
+
067bfb
 GENERATE[x25519-x86_64.s]=asm/x25519-x86_64.pl $(PERLASM_SCHEME)
067bfb
 GENERATE[x25519-ppc64.s]=asm/x25519-ppc64.pl $(PERLASM_SCHEME)
067bfb
 
7d1228
diff -up openssl-1.1.1g/crypto/ec/ec_curve.c.s390x-ecc openssl-1.1.1g/crypto/ec/ec_curve.c
7d1228
--- openssl-1.1.1g/crypto/ec/ec_curve.c.s390x-ecc	2020-05-18 12:45:40.753233375 +0200
7d1228
+++ openssl-1.1.1g/crypto/ec/ec_curve.c	2020-05-18 12:45:42.663249975 +0200
067bfb
@@ -255,20 +255,29 @@ static const ec_list_element curve_list[
067bfb
     {NID_secp256k1, &_EC_SECG_PRIME_256K1.h, 0,
067bfb
      "SECG curve over a 256 bit prime field"},
067bfb
     /* SECG secp256r1 is the same as X9.62 prime256v1 and hence omitted */
067bfb
-    {NID_secp384r1, &_EC_NIST_PRIME_384.h, 0,
067bfb
+    {NID_secp384r1, &_EC_NIST_PRIME_384.h,
067bfb
+# if defined(S390X_EC_ASM)
067bfb
+     EC_GFp_s390x_nistp384_method,
067bfb
+# else
067bfb
+     0,
067bfb
+# endif
067bfb
      "NIST/SECG curve over a 384 bit prime field"},
067bfb
-#ifndef OPENSSL_NO_EC_NISTP_64_GCC_128
067bfb
-    {NID_secp521r1, &_EC_NIST_PRIME_521.h, EC_GFp_nistp521_method,
067bfb
-     "NIST/SECG curve over a 521 bit prime field"},
067bfb
-#else
067bfb
-    {NID_secp521r1, &_EC_NIST_PRIME_521.h, 0,
067bfb
+    {NID_secp521r1, &_EC_NIST_PRIME_521.h,
067bfb
+# if defined(S390X_EC_ASM)
067bfb
+     EC_GFp_s390x_nistp521_method,
067bfb
+# elif !defined(OPENSSL_NO_EC_NISTP_64_GCC_128)
067bfb
+     EC_GFp_nistp521_method,
067bfb
+# else
067bfb
+     0,
067bfb
+# endif
067bfb
      "NIST/SECG curve over a 521 bit prime field"},
067bfb
-#endif
067bfb
     /* X9.62 curves */
067bfb
     {NID_X9_62_prime256v1, &_EC_X9_62_PRIME_256V1.h,
067bfb
 #if defined(ECP_NISTZ256_ASM)
067bfb
      EC_GFp_nistz256_method,
067bfb
-#elif !defined(OPENSSL_NO_EC_NISTP_64_GCC_128)
067bfb
+# elif defined(S390X_EC_ASM)
067bfb
+     EC_GFp_s390x_nistp256_method,
067bfb
+# elif !defined(OPENSSL_NO_EC_NISTP_64_GCC_128)
067bfb
      EC_GFp_nistp256_method,
067bfb
 #else
067bfb
      0,
7d1228
diff -up openssl-1.1.1g/crypto/ec/ecdsa_ossl.c.s390x-ecc openssl-1.1.1g/crypto/ec/ecdsa_ossl.c
7d1228
--- openssl-1.1.1g/crypto/ec/ecdsa_ossl.c.s390x-ecc	2020-05-18 12:45:40.784233644 +0200
7d1228
+++ openssl-1.1.1g/crypto/ec/ecdsa_ossl.c	2020-05-18 12:45:42.664249983 +0200
067bfb
@@ -18,6 +18,41 @@
067bfb
 # include <openssl/fips.h>
067bfb
 #endif
067bfb
 
067bfb
+int ossl_ecdsa_sign_setup(EC_KEY *eckey, BN_CTX *ctx_in, BIGNUM **kinvp,
067bfb
+                          BIGNUM **rp)
067bfb
+{
067bfb
+    if (eckey->group->meth->ecdsa_sign_setup == NULL) {
067bfb
+        ECerr(EC_F_OSSL_ECDSA_SIGN_SETUP, EC_R_CURVE_DOES_NOT_SUPPORT_ECDSA);
067bfb
+        return 0;
067bfb
+    }
067bfb
+
067bfb
+    return eckey->group->meth->ecdsa_sign_setup(eckey, ctx_in, kinvp, rp);
067bfb
+}
067bfb
+
067bfb
+ECDSA_SIG *ossl_ecdsa_sign_sig(const unsigned char *dgst, int dgst_len,
067bfb
+                               const BIGNUM *in_kinv, const BIGNUM *in_r,
067bfb
+                               EC_KEY *eckey)
067bfb
+{
067bfb
+    if (eckey->group->meth->ecdsa_sign_sig == NULL) {
067bfb
+        ECerr(EC_F_OSSL_ECDSA_SIGN_SIG, EC_R_CURVE_DOES_NOT_SUPPORT_ECDSA);
067bfb
+        return NULL;
067bfb
+    }
067bfb
+
067bfb
+    return eckey->group->meth->ecdsa_sign_sig(dgst, dgst_len,
067bfb
+                                              in_kinv, in_r, eckey);
067bfb
+}
067bfb
+
067bfb
+int ossl_ecdsa_verify_sig(const unsigned char *dgst, int dgst_len,
067bfb
+                          const ECDSA_SIG *sig, EC_KEY *eckey)
067bfb
+{
067bfb
+    if (eckey->group->meth->ecdsa_verify_sig == NULL) {
067bfb
+        ECerr(EC_F_OSSL_ECDSA_VERIFY_SIG, EC_R_CURVE_DOES_NOT_SUPPORT_ECDSA);
067bfb
+        return 0;
067bfb
+    }
067bfb
+
067bfb
+    return eckey->group->meth->ecdsa_verify_sig(dgst, dgst_len, sig, eckey);
067bfb
+}
067bfb
+
067bfb
 int ossl_ecdsa_sign(int type, const unsigned char *dgst, int dlen,
067bfb
                     unsigned char *sig, unsigned int *siglen,
067bfb
                     const BIGNUM *kinv, const BIGNUM *r, EC_KEY *eckey)
7d1228
@@ -149,15 +184,15 @@ static int ecdsa_sign_setup(EC_KEY *ecke
067bfb
     return ret;
067bfb
 }
067bfb
 
067bfb
-int ossl_ecdsa_sign_setup(EC_KEY *eckey, BN_CTX *ctx_in, BIGNUM **kinvp,
067bfb
-                          BIGNUM **rp)
067bfb
+int ecdsa_simple_sign_setup(EC_KEY *eckey, BN_CTX *ctx_in, BIGNUM **kinvp,
067bfb
+                            BIGNUM **rp)
067bfb
 {
067bfb
     return ecdsa_sign_setup(eckey, ctx_in, kinvp, rp, NULL, 0);
067bfb
 }
067bfb
 
067bfb
-ECDSA_SIG *ossl_ecdsa_sign_sig(const unsigned char *dgst, int dgst_len,
067bfb
-                               const BIGNUM *in_kinv, const BIGNUM *in_r,
067bfb
-                               EC_KEY *eckey)
067bfb
+ECDSA_SIG *ecdsa_simple_sign_sig(const unsigned char *dgst, int dgst_len,
067bfb
+                                 const BIGNUM *in_kinv, const BIGNUM *in_r,
067bfb
+                                 EC_KEY *eckey)
067bfb
 {
067bfb
     int ok = 0, i;
067bfb
     BIGNUM *kinv = NULL, *s, *m = NULL;
7d1228
@@ -218,25 +253,25 @@ ECDSA_SIG *ossl_ecdsa_sign_sig(const uns
067bfb
     if (8 * dgst_len > i)
067bfb
         dgst_len = (i + 7) / 8;
067bfb
     if (!BN_bin2bn(dgst, dgst_len, m)) {
067bfb
-        ECerr(EC_F_OSSL_ECDSA_SIGN_SIG, ERR_R_BN_LIB);
067bfb
+        ECerr(EC_F_ECDSA_SIMPLE_SIGN_SIG, ERR_R_BN_LIB);
067bfb
         goto err;
067bfb
     }
067bfb
     /* If still too long, truncate remaining bits with a shift */
067bfb
     if ((8 * dgst_len > i) && !BN_rshift(m, m, 8 - (i & 0x7))) {
067bfb
-        ECerr(EC_F_OSSL_ECDSA_SIGN_SIG, ERR_R_BN_LIB);
067bfb
+        ECerr(EC_F_ECDSA_SIMPLE_SIGN_SIG, ERR_R_BN_LIB);
067bfb
         goto err;
067bfb
     }
067bfb
     do {
067bfb
         if (in_kinv == NULL || in_r == NULL) {
067bfb
             if (!ecdsa_sign_setup(eckey, ctx, &kinv, &ret->r, dgst, dgst_len)) {
067bfb
-                ECerr(EC_F_OSSL_ECDSA_SIGN_SIG, ERR_R_ECDSA_LIB);
067bfb
+                ECerr(EC_F_ECDSA_SIMPLE_SIGN_SIG, ERR_R_ECDSA_LIB);
067bfb
                 goto err;
067bfb
             }
067bfb
             ckinv = kinv;
067bfb
         } else {
067bfb
             ckinv = in_kinv;
067bfb
             if (BN_copy(ret->r, in_r) == NULL) {
067bfb
-                ECerr(EC_F_OSSL_ECDSA_SIGN_SIG, ERR_R_MALLOC_FAILURE);
067bfb
+                ECerr(EC_F_ECDSA_SIMPLE_SIGN_SIG, ERR_R_MALLOC_FAILURE);
067bfb
                 goto err;
067bfb
             }
067bfb
         }
7d1228
@@ -250,11 +285,11 @@ ECDSA_SIG *ossl_ecdsa_sign_sig(const uns
067bfb
          */
067bfb
         if (!bn_to_mont_fixed_top(s, ret->r, group->mont_data, ctx)
067bfb
             || !bn_mul_mont_fixed_top(s, s, priv_key, group->mont_data, ctx)) {
067bfb
-            ECerr(EC_F_OSSL_ECDSA_SIGN_SIG, ERR_R_BN_LIB);
067bfb
+            ECerr(EC_F_ECDSA_SIMPLE_SIGN_SIG, ERR_R_BN_LIB);
067bfb
             goto err;
067bfb
         }
067bfb
         if (!bn_mod_add_fixed_top(s, s, m, order)) {
067bfb
-            ECerr(EC_F_OSSL_ECDSA_SIGN_SIG, ERR_R_BN_LIB);
067bfb
+            ECerr(EC_F_ECDSA_SIMPLE_SIGN_SIG, ERR_R_BN_LIB);
067bfb
             goto err;
067bfb
         }
067bfb
         /*
7d1228
@@ -263,7 +298,7 @@ ECDSA_SIG *ossl_ecdsa_sign_sig(const uns
067bfb
          */
067bfb
         if (!bn_to_mont_fixed_top(s, s, group->mont_data, ctx)
067bfb
             || !BN_mod_mul_montgomery(s, s, ckinv, group->mont_data, ctx)) {
067bfb
-            ECerr(EC_F_OSSL_ECDSA_SIGN_SIG, ERR_R_BN_LIB);
067bfb
+            ECerr(EC_F_ECDSA_SIMPLE_SIGN_SIG, ERR_R_BN_LIB);
067bfb
             goto err;
067bfb
         }
067bfb
 
7d1228
@@ -273,7 +308,7 @@ ECDSA_SIG *ossl_ecdsa_sign_sig(const uns
067bfb
              * generate new kinv and r values
067bfb
              */
067bfb
             if (in_kinv != NULL && in_r != NULL) {
067bfb
-                ECerr(EC_F_OSSL_ECDSA_SIGN_SIG, EC_R_NEED_NEW_SETUP_VALUES);
067bfb
+                ECerr(EC_F_ECDSA_SIMPLE_SIGN_SIG, EC_R_NEED_NEW_SETUP_VALUES);
067bfb
                 goto err;
067bfb
             }
067bfb
         } else {
7d1228
@@ -325,8 +360,8 @@ int ossl_ecdsa_verify(int type, const un
067bfb
     return ret;
067bfb
 }
067bfb
 
067bfb
-int ossl_ecdsa_verify_sig(const unsigned char *dgst, int dgst_len,
067bfb
-                          const ECDSA_SIG *sig, EC_KEY *eckey)
067bfb
+int ecdsa_simple_verify_sig(const unsigned char *dgst, int dgst_len,
067bfb
+                            const ECDSA_SIG *sig, EC_KEY *eckey)
067bfb
 {
067bfb
     int ret = -1, i;
067bfb
     BN_CTX *ctx;
7d1228
@@ -346,18 +381,18 @@ int ossl_ecdsa_verify_sig(const unsigned
067bfb
     /* check input values */
067bfb
     if (eckey == NULL || (group = EC_KEY_get0_group(eckey)) == NULL ||
067bfb
         (pub_key = EC_KEY_get0_public_key(eckey)) == NULL || sig == NULL) {
067bfb
-        ECerr(EC_F_OSSL_ECDSA_VERIFY_SIG, EC_R_MISSING_PARAMETERS);
067bfb
+        ECerr(EC_F_ECDSA_SIMPLE_VERIFY_SIG, EC_R_MISSING_PARAMETERS);
067bfb
         return -1;
067bfb
     }
067bfb
 
067bfb
     if (!EC_KEY_can_sign(eckey)) {
067bfb
-        ECerr(EC_F_OSSL_ECDSA_VERIFY_SIG, EC_R_CURVE_DOES_NOT_SUPPORT_SIGNING);
067bfb
+        ECerr(EC_F_ECDSA_SIMPLE_VERIFY_SIG, EC_R_CURVE_DOES_NOT_SUPPORT_SIGNING);
067bfb
         return -1;
067bfb
     }
067bfb
 
067bfb
     ctx = BN_CTX_new();
067bfb
     if (ctx == NULL) {
067bfb
-        ECerr(EC_F_OSSL_ECDSA_VERIFY_SIG, ERR_R_MALLOC_FAILURE);
067bfb
+        ECerr(EC_F_ECDSA_SIMPLE_VERIFY_SIG, ERR_R_MALLOC_FAILURE);
067bfb
         return -1;
067bfb
     }
067bfb
     BN_CTX_start(ctx);
7d1228
@@ -366,26 +401,26 @@ int ossl_ecdsa_verify_sig(const unsigned
067bfb
     m = BN_CTX_get(ctx);
067bfb
     X = BN_CTX_get(ctx);
067bfb
     if (X == NULL) {
067bfb
-        ECerr(EC_F_OSSL_ECDSA_VERIFY_SIG, ERR_R_BN_LIB);
067bfb
+        ECerr(EC_F_ECDSA_SIMPLE_VERIFY_SIG, ERR_R_BN_LIB);
067bfb
         goto err;
067bfb
     }
067bfb
 
067bfb
     order = EC_GROUP_get0_order(group);
067bfb
     if (order == NULL) {
067bfb
-        ECerr(EC_F_OSSL_ECDSA_VERIFY_SIG, ERR_R_EC_LIB);
067bfb
+        ECerr(EC_F_ECDSA_SIMPLE_VERIFY_SIG, ERR_R_EC_LIB);
067bfb
         goto err;
067bfb
     }
067bfb
 
067bfb
     if (BN_is_zero(sig->r) || BN_is_negative(sig->r) ||
067bfb
         BN_ucmp(sig->r, order) >= 0 || BN_is_zero(sig->s) ||
067bfb
         BN_is_negative(sig->s) || BN_ucmp(sig->s, order) >= 0) {
067bfb
-        ECerr(EC_F_OSSL_ECDSA_VERIFY_SIG, EC_R_BAD_SIGNATURE);
067bfb
+        ECerr(EC_F_ECDSA_SIMPLE_VERIFY_SIG, EC_R_BAD_SIGNATURE);
067bfb
         ret = 0;                /* signature is invalid */
067bfb
         goto err;
067bfb
     }
067bfb
     /* calculate tmp1 = inv(S) mod order */
067bfb
     if (!ec_group_do_inverse_ord(group, u2, sig->s, ctx)) {
067bfb
-        ECerr(EC_F_OSSL_ECDSA_VERIFY_SIG, ERR_R_BN_LIB);
067bfb
+        ECerr(EC_F_ECDSA_SIMPLE_VERIFY_SIG, ERR_R_BN_LIB);
067bfb
         goto err;
067bfb
     }
067bfb
     /* digest -> m */
7d1228
@@ -396,41 +431,41 @@ int ossl_ecdsa_verify_sig(const unsigned
067bfb
     if (8 * dgst_len > i)
067bfb
         dgst_len = (i + 7) / 8;
067bfb
     if (!BN_bin2bn(dgst, dgst_len, m)) {
067bfb
-        ECerr(EC_F_OSSL_ECDSA_VERIFY_SIG, ERR_R_BN_LIB);
067bfb
+        ECerr(EC_F_ECDSA_SIMPLE_VERIFY_SIG, ERR_R_BN_LIB);
067bfb
         goto err;
067bfb
     }
067bfb
     /* If still too long truncate remaining bits with a shift */
067bfb
     if ((8 * dgst_len > i) && !BN_rshift(m, m, 8 - (i & 0x7))) {
067bfb
-        ECerr(EC_F_OSSL_ECDSA_VERIFY_SIG, ERR_R_BN_LIB);
067bfb
+        ECerr(EC_F_ECDSA_SIMPLE_VERIFY_SIG, ERR_R_BN_LIB);
067bfb
         goto err;
067bfb
     }
067bfb
     /* u1 = m * tmp mod order */
067bfb
     if (!BN_mod_mul(u1, m, u2, order, ctx)) {
067bfb
-        ECerr(EC_F_OSSL_ECDSA_VERIFY_SIG, ERR_R_BN_LIB);
067bfb
+        ECerr(EC_F_ECDSA_SIMPLE_VERIFY_SIG, ERR_R_BN_LIB);
067bfb
         goto err;
067bfb
     }
067bfb
     /* u2 = r * w mod q */
067bfb
     if (!BN_mod_mul(u2, sig->r, u2, order, ctx)) {
067bfb
-        ECerr(EC_F_OSSL_ECDSA_VERIFY_SIG, ERR_R_BN_LIB);
067bfb
+        ECerr(EC_F_ECDSA_SIMPLE_VERIFY_SIG, ERR_R_BN_LIB);
067bfb
         goto err;
067bfb
     }
067bfb
 
067bfb
     if ((point = EC_POINT_new(group)) == NULL) {
067bfb
-        ECerr(EC_F_OSSL_ECDSA_VERIFY_SIG, ERR_R_MALLOC_FAILURE);
067bfb
+        ECerr(EC_F_ECDSA_SIMPLE_VERIFY_SIG, ERR_R_MALLOC_FAILURE);
067bfb
         goto err;
067bfb
     }
067bfb
     if (!EC_POINT_mul(group, point, u1, pub_key, u2, ctx)) {
067bfb
-        ECerr(EC_F_OSSL_ECDSA_VERIFY_SIG, ERR_R_EC_LIB);
067bfb
+        ECerr(EC_F_ECDSA_SIMPLE_VERIFY_SIG, ERR_R_EC_LIB);
067bfb
         goto err;
067bfb
     }
067bfb
 
067bfb
     if (!EC_POINT_get_affine_coordinates(group, point, X, NULL, ctx)) {
067bfb
-        ECerr(EC_F_OSSL_ECDSA_VERIFY_SIG, ERR_R_EC_LIB);
067bfb
+        ECerr(EC_F_ECDSA_SIMPLE_VERIFY_SIG, ERR_R_EC_LIB);
067bfb
         goto err;
067bfb
     }
067bfb
 
067bfb
     if (!BN_nnmod(u1, X, order, ctx)) {
067bfb
-        ECerr(EC_F_OSSL_ECDSA_VERIFY_SIG, ERR_R_BN_LIB);
067bfb
+        ECerr(EC_F_ECDSA_SIMPLE_VERIFY_SIG, ERR_R_BN_LIB);
067bfb
         goto err;
067bfb
     }
067bfb
     /*  if the signature is correct u1 is equal to sig->r */
7d1228
diff -up openssl-1.1.1g/crypto/ec/ec_err.c.s390x-ecc openssl-1.1.1g/crypto/ec/ec_err.c
7d1228
--- openssl-1.1.1g/crypto/ec/ec_err.c.s390x-ecc	2020-04-21 14:22:39.000000000 +0200
7d1228
+++ openssl-1.1.1g/crypto/ec/ec_err.c	2020-05-18 12:45:42.664249983 +0200
067bfb
@@ -31,6 +31,11 @@ static const ERR_STRING_DATA EC_str_func
067bfb
     {ERR_PACK(ERR_LIB_EC, EC_F_ECDSA_SIGN_SETUP, 0), "ECDSA_sign_setup"},
067bfb
     {ERR_PACK(ERR_LIB_EC, EC_F_ECDSA_SIG_NEW, 0), "ECDSA_SIG_new"},
067bfb
     {ERR_PACK(ERR_LIB_EC, EC_F_ECDSA_VERIFY, 0), "ECDSA_verify"},
067bfb
+    {ERR_PACK(ERR_LIB_EC, EC_F_ECDSA_SIMPLE_SIGN_SETUP, 0), "ecdsa_simple_sign_setup"},
067bfb
+    {ERR_PACK(ERR_LIB_EC, EC_F_ECDSA_SIMPLE_SIGN_SIG, 0), "ecdsa_simple_sign_sig"},
067bfb
+    {ERR_PACK(ERR_LIB_EC, EC_F_ECDSA_SIMPLE_VERIFY_SIG, 0), "ecdsa_simple_verify_sig"},
067bfb
+    {ERR_PACK(ERR_LIB_EC, EC_F_ECDSA_S390X_NISTP_SIGN_SIG, 0), "ecdsa_s390x_nistp_sign_sig"},
067bfb
+    {ERR_PACK(ERR_LIB_EC, EC_F_ECDSA_S390X_NISTP_VERIFY_SIG, 0), "ecdsa_s390x_nistp_verify_sig"},
067bfb
     {ERR_PACK(ERR_LIB_EC, EC_F_ECD_ITEM_VERIFY, 0), "ecd_item_verify"},
067bfb
     {ERR_PACK(ERR_LIB_EC, EC_F_ECKEY_PARAM2TYPE, 0), "eckey_param2type"},
067bfb
     {ERR_PACK(ERR_LIB_EC, EC_F_ECKEY_PARAM_DECODE, 0), "eckey_param_decode"},
067bfb
@@ -266,6 +271,7 @@ static const ERR_STRING_DATA EC_str_func
067bfb
     {ERR_PACK(ERR_LIB_EC, EC_F_OLD_EC_PRIV_DECODE, 0), "old_ec_priv_decode"},
067bfb
     {ERR_PACK(ERR_LIB_EC, EC_F_OSSL_ECDH_COMPUTE_KEY, 0),
067bfb
      "ossl_ecdh_compute_key"},
067bfb
+    {ERR_PACK(ERR_LIB_EC, EC_F_OSSL_ECDSA_SIGN_SETUP, 0), "ossl_ecdsa_sign_setup"},
067bfb
     {ERR_PACK(ERR_LIB_EC, EC_F_OSSL_ECDSA_SIGN_SIG, 0), "ossl_ecdsa_sign_sig"},
067bfb
     {ERR_PACK(ERR_LIB_EC, EC_F_OSSL_ECDSA_VERIFY_SIG, 0),
067bfb
      "ossl_ecdsa_verify_sig"},
067bfb
@@ -284,6 +290,12 @@ static const ERR_STRING_DATA EC_str_func
067bfb
     {ERR_PACK(ERR_LIB_EC, EC_F_PKEY_EC_KEYGEN, 0), "pkey_ec_keygen"},
067bfb
     {ERR_PACK(ERR_LIB_EC, EC_F_PKEY_EC_PARAMGEN, 0), "pkey_ec_paramgen"},
067bfb
     {ERR_PACK(ERR_LIB_EC, EC_F_PKEY_EC_SIGN, 0), "pkey_ec_sign"},
067bfb
+    {ERR_PACK(ERR_LIB_EC, EC_F_S390X_PKEY_ECD_DIGESTSIGN25519, 0), "s390x_pkey_ecd_digestsign25519"},
067bfb
+    {ERR_PACK(ERR_LIB_EC, EC_F_S390X_PKEY_ECD_DIGESTSIGN448, 0), "s390x_pkey_ecd_digestsign448"},
067bfb
+    {ERR_PACK(ERR_LIB_EC, EC_F_S390X_PKEY_ECD_KEYGEN25519, 0), "s390x_pkey_ecd_keygen25519"},
067bfb
+    {ERR_PACK(ERR_LIB_EC, EC_F_S390X_PKEY_ECD_KEYGEN448, 0), "s390x_pkey_ecd_keygen448"},
067bfb
+    {ERR_PACK(ERR_LIB_EC, EC_F_S390X_PKEY_ECX_KEYGEN25519, 0), "s390x_pkey_ecx_keygen25519"},
067bfb
+    {ERR_PACK(ERR_LIB_EC, EC_F_S390X_PKEY_ECX_KEYGEN448, 0), "s390x_pkey_ecx_keygen448"},
067bfb
     {ERR_PACK(ERR_LIB_EC, EC_F_VALIDATE_ECX_DERIVE, 0), "validate_ecx_derive"},
067bfb
     {0, NULL}
067bfb
 };
067bfb
@@ -298,6 +310,8 @@ static const ERR_STRING_DATA EC_str_reas
067bfb
     "coordinates out of range"},
067bfb
     {ERR_PACK(ERR_LIB_EC, 0, EC_R_CURVE_DOES_NOT_SUPPORT_ECDH),
067bfb
     "curve does not support ecdh"},
067bfb
+    {ERR_PACK(ERR_LIB_EC, 0, EC_R_CURVE_DOES_NOT_SUPPORT_ECDSA),
067bfb
+    "curve does not support ecdsa"},
067bfb
     {ERR_PACK(ERR_LIB_EC, 0, EC_R_CURVE_DOES_NOT_SUPPORT_SIGNING),
067bfb
     "curve does not support signing"},
067bfb
     {ERR_PACK(ERR_LIB_EC, 0, EC_R_D2I_ECPKPARAMETERS_FAILURE),
7d1228
diff -up openssl-1.1.1g/crypto/ec/ec_local.h.s390x-ecc openssl-1.1.1g/crypto/ec/ec_local.h
7d1228
--- openssl-1.1.1g/crypto/ec/ec_local.h.s390x-ecc	2020-05-18 12:45:40.554231646 +0200
7d1228
+++ openssl-1.1.1g/crypto/ec/ec_local.h	2020-05-18 12:45:44.564266496 +0200
067bfb
@@ -179,6 +179,14 @@ struct ec_method_st {
067bfb
     /* custom ECDH operation */
067bfb
     int (*ecdh_compute_key)(unsigned char **pout, size_t *poutlen,
067bfb
                             const EC_POINT *pub_key, const EC_KEY *ecdh);
067bfb
+    /* custom ECDSA */
067bfb
+    int (*ecdsa_sign_setup)(EC_KEY *eckey, BN_CTX *ctx, BIGNUM **kinvp,
067bfb
+                            BIGNUM **rp);
067bfb
+    ECDSA_SIG *(*ecdsa_sign_sig)(const unsigned char *dgst, int dgstlen,
067bfb
+                                 const BIGNUM *kinv, const BIGNUM *r,
067bfb
+                                 EC_KEY *eckey);
067bfb
+    int (*ecdsa_verify_sig)(const unsigned char *dgst, int dgstlen,
067bfb
+                            const ECDSA_SIG *sig, EC_KEY *eckey);
067bfb
     /* Inverse modulo order */
067bfb
     int (*field_inverse_mod_ord)(const EC_GROUP *, BIGNUM *r,
067bfb
                                  const BIGNUM *x, BN_CTX *);
067bfb
@@ -587,6 +595,11 @@ int ec_group_simple_order_bits(const EC_
067bfb
  */
067bfb
 const EC_METHOD *EC_GFp_nistz256_method(void);
067bfb
 #endif
067bfb
+#ifdef S390X_EC_ASM
067bfb
+const EC_METHOD *EC_GFp_s390x_nistp256_method(void);
067bfb
+const EC_METHOD *EC_GFp_s390x_nistp384_method(void);
067bfb
+const EC_METHOD *EC_GFp_s390x_nistp521_method(void);
067bfb
+#endif
067bfb
 
067bfb
 size_t ec_key_simple_priv2oct(const EC_KEY *eckey,
067bfb
                               unsigned char *buf, size_t len);
7d1228
@@ -651,6 +664,13 @@ int ossl_ecdsa_verify(int type, const un
067bfb
                       const unsigned char *sigbuf, int sig_len, EC_KEY *eckey);
067bfb
 int ossl_ecdsa_verify_sig(const unsigned char *dgst, int dgst_len,
067bfb
                           const ECDSA_SIG *sig, EC_KEY *eckey);
067bfb
+int ecdsa_simple_sign_setup(EC_KEY *eckey, BN_CTX *ctx_in, BIGNUM **kinvp,
067bfb
+                            BIGNUM **rp);
067bfb
+ECDSA_SIG *ecdsa_simple_sign_sig(const unsigned char *dgst, int dgst_len,
067bfb
+                                 const BIGNUM *in_kinv, const BIGNUM *in_r,
067bfb
+                                 EC_KEY *eckey);
067bfb
+int ecdsa_simple_verify_sig(const unsigned char *dgst, int dgst_len,
067bfb
+                            const ECDSA_SIG *sig, EC_KEY *eckey);
067bfb
 
067bfb
 int ED25519_sign(uint8_t *out_sig, const uint8_t *message, size_t message_len,
067bfb
                  const uint8_t public_key[32], const uint8_t private_key[32]);
7d1228
diff -up openssl-1.1.1g/crypto/ec/ec_pmeth.c.s390x-ecc openssl-1.1.1g/crypto/ec/ec_pmeth.c
7d1228
--- openssl-1.1.1g/crypto/ec/ec_pmeth.c.s390x-ecc	2020-05-18 12:45:40.784233644 +0200
7d1228
+++ openssl-1.1.1g/crypto/ec/ec_pmeth.c	2020-05-18 12:45:44.565266505 +0200
067bfb
@@ -474,3 +474,8 @@ const EVP_PKEY_METHOD ec_pkey_meth = {
067bfb
     pkey_ec_ctrl,
067bfb
     pkey_ec_ctrl_str
067bfb
 };
067bfb
+
067bfb
+const EVP_PKEY_METHOD *ec_pkey_method(void)
067bfb
+{
067bfb
+    return &ec_pkey_meth;
067bfb
+}
7d1228
diff -up openssl-1.1.1g/crypto/ec/ecp_mont.c.s390x-ecc openssl-1.1.1g/crypto/ec/ecp_mont.c
7d1228
--- openssl-1.1.1g/crypto/ec/ecp_mont.c.s390x-ecc	2020-04-21 14:22:39.000000000 +0200
7d1228
+++ openssl-1.1.1g/crypto/ec/ecp_mont.c	2020-05-18 12:45:44.567266523 +0200
067bfb
@@ -63,6 +63,9 @@ const EC_METHOD *EC_GFp_mont_method(void
067bfb
         0, /* keycopy */
067bfb
         0, /* keyfinish */
067bfb
         ecdh_simple_compute_key,
067bfb
+        ecdsa_simple_sign_setup,
067bfb
+        ecdsa_simple_sign_sig,
067bfb
+        ecdsa_simple_verify_sig,
067bfb
         0, /* field_inverse_mod_ord */
067bfb
         ec_GFp_simple_blind_coordinates,
067bfb
         ec_GFp_simple_ladder_pre,
7d1228
diff -up openssl-1.1.1g/crypto/ec/ecp_nist.c.s390x-ecc openssl-1.1.1g/crypto/ec/ecp_nist.c
7d1228
--- openssl-1.1.1g/crypto/ec/ecp_nist.c.s390x-ecc	2020-04-21 14:22:39.000000000 +0200
7d1228
+++ openssl-1.1.1g/crypto/ec/ecp_nist.c	2020-05-18 12:45:44.567266523 +0200
067bfb
@@ -65,6 +65,9 @@ const EC_METHOD *EC_GFp_nist_method(void
067bfb
         0, /* keycopy */
067bfb
         0, /* keyfinish */
067bfb
         ecdh_simple_compute_key,
067bfb
+        ecdsa_simple_sign_setup,
067bfb
+        ecdsa_simple_sign_sig,
067bfb
+        ecdsa_simple_verify_sig,
067bfb
         0, /* field_inverse_mod_ord */
067bfb
         ec_GFp_simple_blind_coordinates,
067bfb
         ec_GFp_simple_ladder_pre,
7d1228
diff -up openssl-1.1.1g/crypto/ec/ecp_nistp224.c.s390x-ecc openssl-1.1.1g/crypto/ec/ecp_nistp224.c
7d1228
--- openssl-1.1.1g/crypto/ec/ecp_nistp224.c.s390x-ecc	2020-04-21 14:22:39.000000000 +0200
7d1228
+++ openssl-1.1.1g/crypto/ec/ecp_nistp224.c	2020-05-18 12:45:44.568266531 +0200
067bfb
@@ -292,6 +292,9 @@ const EC_METHOD *EC_GFp_nistp224_method(
067bfb
         0, /* keycopy */
067bfb
         0, /* keyfinish */
067bfb
         ecdh_simple_compute_key,
067bfb
+        ecdsa_simple_sign_setup,
067bfb
+        ecdsa_simple_sign_sig,
067bfb
+        ecdsa_simple_verify_sig,
067bfb
         0, /* field_inverse_mod_ord */
067bfb
         0, /* blind_coordinates */
067bfb
         0, /* ladder_pre */
7d1228
diff -up openssl-1.1.1g/crypto/ec/ecp_nistp256.c.s390x-ecc openssl-1.1.1g/crypto/ec/ecp_nistp256.c
7d1228
--- openssl-1.1.1g/crypto/ec/ecp_nistp256.c.s390x-ecc	2020-04-21 14:22:39.000000000 +0200
7d1228
+++ openssl-1.1.1g/crypto/ec/ecp_nistp256.c	2020-05-18 12:45:44.568266531 +0200
7d1228
@@ -1829,6 +1829,9 @@ const EC_METHOD *EC_GFp_nistp256_method(
067bfb
         0, /* keycopy */
067bfb
         0, /* keyfinish */
067bfb
         ecdh_simple_compute_key,
067bfb
+        ecdsa_simple_sign_setup,
067bfb
+        ecdsa_simple_sign_sig,
067bfb
+        ecdsa_simple_verify_sig,
067bfb
         0, /* field_inverse_mod_ord */
067bfb
         0, /* blind_coordinates */
067bfb
         0, /* ladder_pre */
7d1228
diff -up openssl-1.1.1g/crypto/ec/ecp_nistp521.c.s390x-ecc openssl-1.1.1g/crypto/ec/ecp_nistp521.c
7d1228
--- openssl-1.1.1g/crypto/ec/ecp_nistp521.c.s390x-ecc	2020-04-21 14:22:39.000000000 +0200
7d1228
+++ openssl-1.1.1g/crypto/ec/ecp_nistp521.c	2020-05-18 12:45:44.569266540 +0200
7d1228
@@ -1669,6 +1669,9 @@ const EC_METHOD *EC_GFp_nistp521_method(
067bfb
         0, /* keycopy */
067bfb
         0, /* keyfinish */
067bfb
         ecdh_simple_compute_key,
067bfb
+        ecdsa_simple_sign_setup,
067bfb
+        ecdsa_simple_sign_sig,
067bfb
+        ecdsa_simple_verify_sig,
067bfb
         0, /* field_inverse_mod_ord */
067bfb
         0, /* blind_coordinates */
067bfb
         0, /* ladder_pre */
7d1228
diff -up openssl-1.1.1g/crypto/ec/ecp_nistz256.c.s390x-ecc openssl-1.1.1g/crypto/ec/ecp_nistz256.c
7d1228
--- openssl-1.1.1g/crypto/ec/ecp_nistz256.c.s390x-ecc	2020-04-21 14:22:39.000000000 +0200
7d1228
+++ openssl-1.1.1g/crypto/ec/ecp_nistz256.c	2020-05-18 12:45:44.570266549 +0200
7d1228
@@ -1720,6 +1720,9 @@ const EC_METHOD *EC_GFp_nistz256_method(
067bfb
         0, /* keycopy */
067bfb
         0, /* keyfinish */
067bfb
         ecdh_simple_compute_key,
067bfb
+        ecdsa_simple_sign_setup,
067bfb
+        ecdsa_simple_sign_sig,
067bfb
+        ecdsa_simple_verify_sig,
067bfb
         ecp_nistz256_inv_mod_ord,                   /* can be #define-d NULL */
067bfb
         0,                                          /* blind_coordinates */
067bfb
         0,                                          /* ladder_pre */
7d1228
diff -up openssl-1.1.1g/crypto/ec/ecp_s390x_nistp.c.s390x-ecc openssl-1.1.1g/crypto/ec/ecp_s390x_nistp.c
7d1228
--- openssl-1.1.1g/crypto/ec/ecp_s390x_nistp.c.s390x-ecc	2020-05-18 12:45:44.571266557 +0200
7d1228
+++ openssl-1.1.1g/crypto/ec/ecp_s390x_nistp.c	2020-05-18 12:45:44.571266557 +0200
067bfb
@@ -0,0 +1,394 @@
067bfb
+/*
067bfb
+ * Copyright 2019 The OpenSSL Project Authors. All Rights Reserved.
067bfb
+ *
067bfb
+ * Licensed under the Apache License 2.0 (the "License").  You may not use
067bfb
+ * this file except in compliance with the License.  You can obtain a copy
067bfb
+ * in the file LICENSE in the source distribution or at
067bfb
+ * https://www.openssl.org/source/license.html
067bfb
+ */
067bfb
+
067bfb
+#include <stdlib.h>
067bfb
+#include <string.h>
067bfb
+#include <openssl/err.h>
067bfb
+#include <openssl/rand.h>
7d1228
+#include "ec_local.h"
067bfb
+#include "s390x_arch.h"
067bfb
+
067bfb
+/* Size of parameter blocks */
067bfb
+#define S390X_SIZE_PARAM                4096
067bfb
+
067bfb
+/* Size of fields in parameter blocks */
067bfb
+#define S390X_SIZE_P256                 32
067bfb
+#define S390X_SIZE_P384                 48
067bfb
+#define S390X_SIZE_P521                 80
067bfb
+
067bfb
+/* Offsets of fields in PCC parameter blocks */
067bfb
+#define S390X_OFF_RES_X(n)              (0 * n)
067bfb
+#define S390X_OFF_RES_Y(n)              (1 * n)
067bfb
+#define S390X_OFF_SRC_X(n)              (2 * n)
067bfb
+#define S390X_OFF_SRC_Y(n)              (3 * n)
067bfb
+#define S390X_OFF_SCALAR(n)             (4 * n)
067bfb
+
067bfb
+/* Offsets of fields in KDSA parameter blocks */
067bfb
+#define S390X_OFF_R(n)                  (0 * n)
067bfb
+#define S390X_OFF_S(n)                  (1 * n)
067bfb
+#define S390X_OFF_H(n)                  (2 * n)
067bfb
+#define S390X_OFF_K(n)                  (3 * n)
067bfb
+#define S390X_OFF_X(n)                  (3 * n)
067bfb
+#define S390X_OFF_RN(n)                 (4 * n)
067bfb
+#define S390X_OFF_Y(n)                  (4 * n)
067bfb
+
067bfb
+static int ec_GFp_s390x_nistp_mul(const EC_GROUP *group, EC_POINT *r,
067bfb
+                                  const BIGNUM *scalar,
067bfb
+                                  size_t num, const EC_POINT *points[],
067bfb
+                                  const BIGNUM *scalars[],
067bfb
+                                  BN_CTX *ctx, unsigned int fc, int len)
067bfb
+{
067bfb
+    unsigned char param[S390X_SIZE_PARAM];
067bfb
+    BIGNUM *x, *y;
067bfb
+    const EC_POINT *point_ptr = NULL;
067bfb
+    const BIGNUM *scalar_ptr = NULL;
067bfb
+    BN_CTX *new_ctx = NULL;
067bfb
+    int rc = -1;
067bfb
+
067bfb
+    if (ctx == NULL) {
067bfb
+        ctx = new_ctx = BN_CTX_new();
067bfb
+        if (ctx == NULL)
067bfb
+            return 0;
067bfb
+    }
067bfb
+
067bfb
+    BN_CTX_start(ctx);
067bfb
+
067bfb
+    x = BN_CTX_get(ctx);
067bfb
+    y = BN_CTX_get(ctx);
067bfb
+    if (x == NULL || y == NULL) {
067bfb
+        rc = 0;
067bfb
+        goto ret;
067bfb
+    }
067bfb
+
067bfb
+    /*
067bfb
+     * Use PCC for EC keygen and ECDH key derivation:
067bfb
+     * scalar * generator and scalar * peer public key,
067bfb
+     * scalar in [0,order).
067bfb
+     */
067bfb
+    if ((scalar != NULL && num == 0 && BN_is_negative(scalar) == 0)
067bfb
+        || (scalar == NULL && num == 1 && BN_is_negative(scalars[0]) == 0)) {
067bfb
+
067bfb
+        if (num == 0) {
067bfb
+            point_ptr = EC_GROUP_get0_generator(group);
067bfb
+            scalar_ptr = scalar;
067bfb
+        } else {
067bfb
+            point_ptr = points[0];
067bfb
+            scalar_ptr = scalars[0];
067bfb
+        }
067bfb
+
067bfb
+        if (EC_POINT_is_at_infinity(group, point_ptr) == 1
067bfb
+            || BN_is_zero(scalar_ptr)) {
067bfb
+            rc = EC_POINT_set_to_infinity(group, r);
067bfb
+            goto ret;
067bfb
+        }
067bfb
+
067bfb
+        memset(&param, 0, sizeof(param));
067bfb
+
067bfb
+        if (group->meth->point_get_affine_coordinates(group, point_ptr,
067bfb
+                                                      x, y, ctx) != 1
067bfb
+            || BN_bn2binpad(x, param + S390X_OFF_SRC_X(len), len) == -1
067bfb
+            || BN_bn2binpad(y, param + S390X_OFF_SRC_Y(len), len) == -1
067bfb
+            || BN_bn2binpad(scalar_ptr,
067bfb
+                            param + S390X_OFF_SCALAR(len), len) == -1
067bfb
+            || s390x_pcc(fc, param) != 0
067bfb
+            || BN_bin2bn(param + S390X_OFF_RES_X(len), len, x) == NULL
067bfb
+            || BN_bin2bn(param + S390X_OFF_RES_Y(len), len, y) == NULL
067bfb
+            || group->meth->point_set_affine_coordinates(group, r,
067bfb
+                                                         x, y, ctx) != 1)
067bfb
+            goto ret;
067bfb
+
067bfb
+        rc = 1;
067bfb
+    }
067bfb
+
067bfb
+ret:
067bfb
+    /* Otherwise use default. */
067bfb
+    if (rc == -1)
067bfb
+        rc = ec_wNAF_mul(group, r, scalar, num, points, scalars, ctx);
067bfb
+    OPENSSL_cleanse(param + S390X_OFF_SCALAR(len), len);
067bfb
+    BN_CTX_end(ctx);
067bfb
+    BN_CTX_free(new_ctx);
067bfb
+    return rc;
067bfb
+}
067bfb
+
067bfb
+static ECDSA_SIG *ecdsa_s390x_nistp_sign_sig(const unsigned char *dgst,
067bfb
+                                             int dgstlen,
067bfb
+                                             const BIGNUM *kinv,
067bfb
+                                             const BIGNUM *r,
067bfb
+                                             EC_KEY *eckey,
067bfb
+                                             unsigned int fc, int len)
067bfb
+{
067bfb
+    unsigned char param[S390X_SIZE_PARAM];
067bfb
+    int ok = 0;
067bfb
+    BIGNUM *k;
067bfb
+    ECDSA_SIG *sig;
067bfb
+    const EC_GROUP *group;
067bfb
+    const BIGNUM *privkey;
067bfb
+    int off;
067bfb
+
067bfb
+    group = EC_KEY_get0_group(eckey);
067bfb
+    privkey = EC_KEY_get0_private_key(eckey);
067bfb
+    if (group == NULL || privkey == NULL) {
067bfb
+        ECerr(EC_F_ECDSA_S390X_NISTP_SIGN_SIG, EC_R_MISSING_PARAMETERS);
067bfb
+        return NULL;
067bfb
+    }
067bfb
+
067bfb
+    if (!EC_KEY_can_sign(eckey)) {
067bfb
+        ECerr(EC_F_ECDSA_S390X_NISTP_SIGN_SIG,
067bfb
+              EC_R_CURVE_DOES_NOT_SUPPORT_SIGNING);
067bfb
+        return NULL;
067bfb
+    }
067bfb
+
067bfb
+    k = BN_secure_new();
067bfb
+    sig = ECDSA_SIG_new();
067bfb
+    if (k == NULL || sig == NULL) {
067bfb
+        ECerr(EC_F_ECDSA_S390X_NISTP_SIGN_SIG, ERR_R_MALLOC_FAILURE);
067bfb
+        goto ret;
067bfb
+    }
067bfb
+
067bfb
+    sig->r = BN_new();
067bfb
+    sig->s = BN_new();
067bfb
+    if (sig->r == NULL || sig->s == NULL) {
067bfb
+        ECerr(EC_F_ECDSA_S390X_NISTP_SIGN_SIG, ERR_R_MALLOC_FAILURE);
067bfb
+        goto ret;
067bfb
+    }
067bfb
+
067bfb
+    memset(param, 0, sizeof(param));
067bfb
+    off = len - (dgstlen > len ? len : dgstlen);
067bfb
+    memcpy(param + S390X_OFF_H(len) + off, dgst, len - off);
067bfb
+
067bfb
+    if (BN_bn2binpad(privkey, param + S390X_OFF_K(len), len) == -1) {
067bfb
+        ECerr(EC_F_ECDSA_S390X_NISTP_SIGN_SIG, ERR_R_BN_LIB);
067bfb
+        goto ret;
067bfb
+    }
067bfb
+
067bfb
+    if (r == NULL || kinv == NULL) {
067bfb
+        /*
067bfb
+         * Generate random k and copy to param param block. RAND_priv_bytes
067bfb
+         * is used instead of BN_priv_rand_range or BN_generate_dsa_nonce
067bfb
+         * because kdsa instruction constructs an in-range, invertible nonce
067bfb
+         * internally implementing counter-measures for RNG weakness.
067bfb
+         */
067bfb
+         if (RAND_priv_bytes(param + S390X_OFF_RN(len), len) != 1) {
067bfb
+             ECerr(EC_F_ECDSA_S390X_NISTP_SIGN_SIG,
067bfb
+                   EC_R_RANDOM_NUMBER_GENERATION_FAILED);
067bfb
+             goto ret;
067bfb
+         }
067bfb
+    } else {
067bfb
+        /* Reconstruct k = (k^-1)^-1. */
067bfb
+        if (ec_group_do_inverse_ord(group, k, kinv, NULL) == 0
067bfb
+            || BN_bn2binpad(k, param + S390X_OFF_RN(len), len) == -1) {
067bfb
+            ECerr(EC_F_ECDSA_S390X_NISTP_SIGN_SIG, ERR_R_BN_LIB);
067bfb
+            goto ret;
067bfb
+        }
067bfb
+        /* Turns KDSA internal nonce-generation off. */
067bfb
+        fc |= S390X_KDSA_D;
067bfb
+    }
067bfb
+
067bfb
+    if (s390x_kdsa(fc, param, NULL, 0) != 0) {
067bfb
+        ECerr(EC_F_ECDSA_S390X_NISTP_SIGN_SIG, ERR_R_ECDSA_LIB);
067bfb
+        goto ret;
067bfb
+    }
067bfb
+
067bfb
+    if (BN_bin2bn(param + S390X_OFF_R(len), len, sig->r) == NULL
067bfb
+        || BN_bin2bn(param + S390X_OFF_S(len), len, sig->s) == NULL) {
067bfb
+        ECerr(EC_F_ECDSA_S390X_NISTP_SIGN_SIG, ERR_R_BN_LIB);
067bfb
+        goto ret;
067bfb
+    }
067bfb
+
067bfb
+    ok = 1;
067bfb
+ret:
067bfb
+    OPENSSL_cleanse(param + S390X_OFF_K(len), 2 * len);
067bfb
+    if (ok != 1) {
067bfb
+        ECDSA_SIG_free(sig);
067bfb
+        sig = NULL;
067bfb
+    }
067bfb
+    BN_clear_free(k);
067bfb
+    return sig;
067bfb
+}
067bfb
+
067bfb
+static int ecdsa_s390x_nistp_verify_sig(const unsigned char *dgst, int dgstlen,
067bfb
+                                        const ECDSA_SIG *sig, EC_KEY *eckey,
067bfb
+                                        unsigned int fc, int len)
067bfb
+{
067bfb
+    unsigned char param[S390X_SIZE_PARAM];
067bfb
+    int rc = -1;
067bfb
+    BN_CTX *ctx;
067bfb
+    BIGNUM *x, *y;
067bfb
+    const EC_GROUP *group;
067bfb
+    const EC_POINT *pubkey;
067bfb
+    int off;
067bfb
+
067bfb
+    group = EC_KEY_get0_group(eckey);
067bfb
+    pubkey = EC_KEY_get0_public_key(eckey);
067bfb
+    if (eckey == NULL || group == NULL || pubkey == NULL || sig == NULL) {
067bfb
+        ECerr(EC_F_ECDSA_S390X_NISTP_VERIFY_SIG, EC_R_MISSING_PARAMETERS);
067bfb
+        return -1;
067bfb
+    }
067bfb
+
067bfb
+    if (!EC_KEY_can_sign(eckey)) {
067bfb
+        ECerr(EC_F_ECDSA_S390X_NISTP_VERIFY_SIG,
067bfb
+              EC_R_CURVE_DOES_NOT_SUPPORT_SIGNING);
067bfb
+        return -1;
067bfb
+    }
067bfb
+
067bfb
+    ctx = BN_CTX_new();
067bfb
+    if (ctx == NULL) {
067bfb
+        ECerr(EC_F_ECDSA_S390X_NISTP_VERIFY_SIG, ERR_R_MALLOC_FAILURE);
067bfb
+        return -1;
067bfb
+    }
067bfb
+
067bfb
+    BN_CTX_start(ctx);
067bfb
+
067bfb
+    x = BN_CTX_get(ctx);
067bfb
+    y = BN_CTX_get(ctx);
067bfb
+    if (x == NULL || y == NULL) {
067bfb
+        ECerr(EC_F_ECDSA_S390X_NISTP_VERIFY_SIG, ERR_R_MALLOC_FAILURE);
067bfb
+        goto ret;
067bfb
+    }
067bfb
+
067bfb
+    memset(param, 0, sizeof(param));
067bfb
+    off = len - (dgstlen > len ? len : dgstlen);
067bfb
+    memcpy(param + S390X_OFF_H(len) + off, dgst, len - off);
067bfb
+
067bfb
+    if (group->meth->point_get_affine_coordinates(group, pubkey,
067bfb
+                                                  x, y, ctx) != 1
067bfb
+        || BN_bn2binpad(sig->r, param + S390X_OFF_R(len), len) == -1
067bfb
+        || BN_bn2binpad(sig->s, param + S390X_OFF_S(len), len) == -1
067bfb
+        || BN_bn2binpad(x, param + S390X_OFF_X(len), len) == -1
067bfb
+        || BN_bn2binpad(y, param + S390X_OFF_Y(len), len) == -1) {
067bfb
+        ECerr(EC_F_ECDSA_S390X_NISTP_VERIFY_SIG, ERR_R_BN_LIB);
067bfb
+        goto ret;
067bfb
+    }
067bfb
+
067bfb
+    rc = s390x_kdsa(fc, param, NULL, 0) == 0 ? 1 : 0;
067bfb
+ret:
067bfb
+    BN_CTX_end(ctx);
067bfb
+    BN_CTX_free(ctx);
067bfb
+    return rc;
067bfb
+}
067bfb
+
067bfb
+#define EC_GFP_S390X_NISTP_METHOD(bits)                                 \
067bfb
+                                                                        \
067bfb
+static int ec_GFp_s390x_nistp##bits##_mul(const EC_GROUP *group,        \
067bfb
+                                          EC_POINT *r,                  \
067bfb
+                                          const BIGNUM *scalar,         \
067bfb
+                                          size_t num,                   \
067bfb
+                                          const EC_POINT *points[],     \
067bfb
+                                          const BIGNUM *scalars[],      \
067bfb
+                                          BN_CTX *ctx)                  \
067bfb
+{                                                                       \
067bfb
+    return ec_GFp_s390x_nistp_mul(group, r, scalar, num, points,        \
067bfb
+                                  scalars, ctx,                         \
067bfb
+                                  S390X_SCALAR_MULTIPLY_P##bits,        \
067bfb
+                                  S390X_SIZE_P##bits);                  \
067bfb
+}                                                                       \
067bfb
+                                                                        \
067bfb
+static ECDSA_SIG *ecdsa_s390x_nistp##bits##_sign_sig(const unsigned     \
067bfb
+                                                     char *dgst,        \
067bfb
+                                                     int dgstlen,       \
067bfb
+                                                     const BIGNUM *kinv,\
067bfb
+                                                     const BIGNUM *r,   \
067bfb
+                                                     EC_KEY *eckey)     \
067bfb
+{                                                                       \
067bfb
+    return ecdsa_s390x_nistp_sign_sig(dgst, dgstlen, kinv, r, eckey,    \
067bfb
+                                      S390X_ECDSA_SIGN_P##bits,         \
067bfb
+                                      S390X_SIZE_P##bits);              \
067bfb
+}                                                                       \
067bfb
+                                                                        \
067bfb
+static int ecdsa_s390x_nistp##bits##_verify_sig(const                   \
067bfb
+                                                unsigned char *dgst,    \
067bfb
+                                                int dgstlen,            \
067bfb
+                                                const ECDSA_SIG *sig,   \
067bfb
+                                                EC_KEY *eckey)          \
067bfb
+{                                                                       \
067bfb
+    return ecdsa_s390x_nistp_verify_sig(dgst, dgstlen, sig, eckey,      \
067bfb
+                                        S390X_ECDSA_VERIFY_P##bits,     \
067bfb
+                                        S390X_SIZE_P##bits);            \
067bfb
+}                                                                       \
067bfb
+                                                                        \
067bfb
+const EC_METHOD *EC_GFp_s390x_nistp##bits##_method(void)                \
067bfb
+{                                                                       \
067bfb
+    static const EC_METHOD EC_GFp_s390x_nistp##bits##_meth = {          \
067bfb
+        EC_FLAGS_DEFAULT_OCT,                                           \
067bfb
+        NID_X9_62_prime_field,                                          \
067bfb
+        ec_GFp_simple_group_init,                                       \
067bfb
+        ec_GFp_simple_group_finish,                                     \
067bfb
+        ec_GFp_simple_group_clear_finish,                               \
067bfb
+        ec_GFp_simple_group_copy,                                       \
067bfb
+        ec_GFp_simple_group_set_curve,                                  \
067bfb
+        ec_GFp_simple_group_get_curve,                                  \
067bfb
+        ec_GFp_simple_group_get_degree,                                 \
067bfb
+        ec_group_simple_order_bits,                                     \
067bfb
+        ec_GFp_simple_group_check_discriminant,                         \
067bfb
+        ec_GFp_simple_point_init,                                       \
067bfb
+        ec_GFp_simple_point_finish,                                     \
067bfb
+        ec_GFp_simple_point_clear_finish,                               \
067bfb
+        ec_GFp_simple_point_copy,                                       \
067bfb
+        ec_GFp_simple_point_set_to_infinity,                            \
067bfb
+        ec_GFp_simple_set_Jprojective_coordinates_GFp,                  \
067bfb
+        ec_GFp_simple_get_Jprojective_coordinates_GFp,                  \
067bfb
+        ec_GFp_simple_point_set_affine_coordinates,                     \
067bfb
+        ec_GFp_simple_point_get_affine_coordinates,                     \
067bfb
+        NULL, /* point_set_compressed_coordinates */                    \
067bfb
+        NULL, /* point2oct */                                           \
067bfb
+        NULL, /* oct2point */                                           \
067bfb
+        ec_GFp_simple_add,                                              \
067bfb
+        ec_GFp_simple_dbl,                                              \
067bfb
+        ec_GFp_simple_invert,                                           \
067bfb
+        ec_GFp_simple_is_at_infinity,                                   \
067bfb
+        ec_GFp_simple_is_on_curve,                                      \
067bfb
+        ec_GFp_simple_cmp,                                              \
067bfb
+        ec_GFp_simple_make_affine,                                      \
067bfb
+        ec_GFp_simple_points_make_affine,                               \
067bfb
+        ec_GFp_s390x_nistp##bits##_mul,                                 \
067bfb
+        NULL, /* precompute_mult */                                     \
067bfb
+        NULL, /* have_precompute_mult */                                \
067bfb
+        ec_GFp_simple_field_mul,                                        \
067bfb
+        ec_GFp_simple_field_sqr,                                        \
067bfb
+        NULL, /* field_div */                                           \
067bfb
+        ec_GFp_simple_field_inv,                                        \
067bfb
+        NULL, /* field_encode */                                        \
067bfb
+        NULL, /* field_decode */                                        \
067bfb
+        NULL, /* field_set_to_one */                                    \
067bfb
+        ec_key_simple_priv2oct,                                         \
067bfb
+        ec_key_simple_oct2priv,                                         \
067bfb
+        NULL, /* set_private */                                         \
067bfb
+        ec_key_simple_generate_key,                                     \
067bfb
+        ec_key_simple_check_key,                                        \
067bfb
+        ec_key_simple_generate_public_key,                              \
067bfb
+        NULL, /* keycopy */                                             \
067bfb
+        NULL, /* keyfinish */                                           \
067bfb
+        ecdh_simple_compute_key,                                        \
067bfb
+        ecdsa_simple_sign_setup,                                        \
067bfb
+        ecdsa_s390x_nistp##bits##_sign_sig,                             \
067bfb
+        ecdsa_s390x_nistp##bits##_verify_sig,                           \
067bfb
+        NULL, /* field_inverse_mod_ord */                               \
067bfb
+        ec_GFp_simple_blind_coordinates,                                \
067bfb
+        ec_GFp_simple_ladder_pre,                                       \
067bfb
+        ec_GFp_simple_ladder_step,                                      \
067bfb
+        ec_GFp_simple_ladder_post                                       \
067bfb
+    };                                                                  \
067bfb
+    static const EC_METHOD *ret;                                        \
067bfb
+                                                                        \
067bfb
+    if ((OPENSSL_s390xcap_P.pcc[1]                                      \
067bfb
+         & S390X_CAPBIT(S390X_SCALAR_MULTIPLY_P##bits))                 \
067bfb
+        && (OPENSSL_s390xcap_P.kdsa[0]                                  \
067bfb
+            & S390X_CAPBIT(S390X_ECDSA_VERIFY_P##bits))                 \
067bfb
+        && (OPENSSL_s390xcap_P.kdsa[0]                                  \
067bfb
+            & S390X_CAPBIT(S390X_ECDSA_SIGN_P##bits)))                  \
067bfb
+        ret = &EC_GFp_s390x_nistp##bits##_meth;                         \
067bfb
+    else                                                                \
067bfb
+        ret = EC_GFp_mont_method();                                     \
067bfb
+                                                                        \
067bfb
+    return ret;                                                         \
067bfb
+}
067bfb
+
067bfb
+EC_GFP_S390X_NISTP_METHOD(256)
067bfb
+EC_GFP_S390X_NISTP_METHOD(384)
067bfb
+EC_GFP_S390X_NISTP_METHOD(521)
7d1228
diff -up openssl-1.1.1g/crypto/ec/ecp_smpl.c.s390x-ecc openssl-1.1.1g/crypto/ec/ecp_smpl.c
7d1228
--- openssl-1.1.1g/crypto/ec/ecp_smpl.c.s390x-ecc	2020-05-18 12:45:40.769233514 +0200
7d1228
+++ openssl-1.1.1g/crypto/ec/ecp_smpl.c	2020-05-18 12:45:44.572266566 +0200
067bfb
@@ -64,6 +64,9 @@ const EC_METHOD *EC_GFp_simple_method(vo
067bfb
         0, /* keycopy */
067bfb
         0, /* keyfinish */
067bfb
         ecdh_simple_compute_key,
067bfb
+        ecdsa_simple_sign_setup,
067bfb
+        ecdsa_simple_sign_sig,
067bfb
+        ecdsa_simple_verify_sig,
067bfb
         0, /* field_inverse_mod_ord */
067bfb
         ec_GFp_simple_blind_coordinates,
067bfb
         ec_GFp_simple_ladder_pre,
7d1228
diff -up openssl-1.1.1g/crypto/ec/ecx_meth.c.s390x-ecc openssl-1.1.1g/crypto/ec/ecx_meth.c
7d1228
--- openssl-1.1.1g/crypto/ec/ecx_meth.c.s390x-ecc	2020-04-21 14:22:39.000000000 +0200
7d1228
+++ openssl-1.1.1g/crypto/ec/ecx_meth.c	2020-05-18 12:45:44.573266575 +0200
067bfb
@@ -20,6 +20,7 @@
067bfb
 #define X25519_BITS          253
067bfb
 #define X25519_SECURITY_BITS 128
067bfb
 
067bfb
+#define ED25519_KEYLEN       32
067bfb
 #define ED25519_SIGSIZE      64
067bfb
 
067bfb
 #define X448_BITS            448
067bfb
@@ -839,3 +840,666 @@ const EVP_PKEY_METHOD ed448_pkey_meth =
067bfb
     pkey_ecd_digestsign448,
067bfb
     pkey_ecd_digestverify448
067bfb
 };
067bfb
+
067bfb
+#ifdef S390X_EC_ASM
067bfb
+# include "s390x_arch.h"
7d1228
+# include "internal/constant_time.h"
067bfb
+
067bfb
+static void s390x_x25519_mod_p(unsigned char u[32])
067bfb
+{
067bfb
+    unsigned char u_red[32];
067bfb
+    unsigned int c = 0;
067bfb
+    int i;
067bfb
+
067bfb
+    memcpy(u_red, u, sizeof(u_red));
067bfb
+
067bfb
+    c += (unsigned int)u_red[31] + 19;
067bfb
+    u_red[31] = (unsigned char)c;
067bfb
+    c >>= 8;
067bfb
+
067bfb
+    for (i = 30; i >= 0; i--) {
067bfb
+        c += (unsigned int)u_red[i];
067bfb
+        u_red[i] = (unsigned char)c;
067bfb
+        c >>= 8;
067bfb
+    }
067bfb
+
067bfb
+    c = (u_red[0] & 0x80) >> 7;
067bfb
+    u_red[0] &= 0x7f;
067bfb
+    constant_time_cond_swap_buff(0 - (unsigned char)c,
067bfb
+                                 u, u_red, sizeof(u_red));
067bfb
+}
067bfb
+
067bfb
+static void s390x_x448_mod_p(unsigned char u[56])
067bfb
+{
067bfb
+    unsigned char u_red[56];
067bfb
+    unsigned int c = 0;
067bfb
+    int i;
067bfb
+
067bfb
+    memcpy(u_red, u, sizeof(u_red));
067bfb
+
067bfb
+    c += (unsigned int)u_red[55] + 1;
067bfb
+    u_red[55] = (unsigned char)c;
067bfb
+    c >>= 8;
067bfb
+
067bfb
+    for (i = 54; i >= 28; i--) {
067bfb
+        c += (unsigned int)u_red[i];
067bfb
+        u_red[i] = (unsigned char)c;
067bfb
+        c >>= 8;
067bfb
+    }
067bfb
+
067bfb
+    c += (unsigned int)u_red[27] + 1;
067bfb
+    u_red[27] = (unsigned char)c;
067bfb
+    c >>= 8;
067bfb
+
067bfb
+    for (i = 26; i >= 0; i--) {
067bfb
+        c += (unsigned int)u_red[i];
067bfb
+        u_red[i] = (unsigned char)c;
067bfb
+        c >>= 8;
067bfb
+    }
067bfb
+
067bfb
+    constant_time_cond_swap_buff(0 - (unsigned char)c,
067bfb
+                                 u, u_red, sizeof(u_red));
067bfb
+}
067bfb
+
067bfb
+static int s390x_x25519_mul(unsigned char u_dst[32],
067bfb
+                            const unsigned char u_src[32],
067bfb
+                            const unsigned char d_src[32])
067bfb
+{
067bfb
+    union {
067bfb
+        struct {
067bfb
+            unsigned char u_dst[32];
067bfb
+            unsigned char u_src[32];
067bfb
+            unsigned char d_src[32];
067bfb
+        } x25519;
067bfb
+        unsigned long long buff[512];
067bfb
+    } param;
067bfb
+    int rc;
067bfb
+
067bfb
+    memset(&param, 0, sizeof(param));
067bfb
+
067bfb
+    s390x_flip_endian32(param.x25519.u_src, u_src);
067bfb
+    param.x25519.u_src[0] &= 0x7f;
067bfb
+    s390x_x25519_mod_p(param.x25519.u_src);
067bfb
+
067bfb
+    s390x_flip_endian32(param.x25519.d_src, d_src);
067bfb
+    param.x25519.d_src[31] &= 248;
067bfb
+    param.x25519.d_src[0] &= 127;
067bfb
+    param.x25519.d_src[0] |= 64;
067bfb
+
067bfb
+    rc = s390x_pcc(S390X_SCALAR_MULTIPLY_X25519, &param.x25519) ? 0 : 1;
067bfb
+    if (rc == 1)
067bfb
+        s390x_flip_endian32(u_dst, param.x25519.u_dst);
067bfb
+
067bfb
+    OPENSSL_cleanse(param.x25519.d_src, sizeof(param.x25519.d_src));
067bfb
+    return rc;
067bfb
+}
067bfb
+
067bfb
+static int s390x_x448_mul(unsigned char u_dst[56],
067bfb
+                          const unsigned char u_src[56],
067bfb
+                          const unsigned char d_src[56])
067bfb
+{
067bfb
+    union {
067bfb
+        struct {
067bfb
+            unsigned char u_dst[64];
067bfb
+            unsigned char u_src[64];
067bfb
+            unsigned char d_src[64];
067bfb
+        } x448;
067bfb
+        unsigned long long buff[512];
067bfb
+    } param;
067bfb
+    int rc;
067bfb
+
067bfb
+    memset(&param, 0, sizeof(param));
067bfb
+
067bfb
+    memcpy(param.x448.u_src, u_src, 56);
067bfb
+    memcpy(param.x448.d_src, d_src, 56);
067bfb
+
067bfb
+    s390x_flip_endian64(param.x448.u_src, param.x448.u_src);
067bfb
+    s390x_x448_mod_p(param.x448.u_src + 8);
067bfb
+
067bfb
+    s390x_flip_endian64(param.x448.d_src, param.x448.d_src);
067bfb
+    param.x448.d_src[63] &= 252;
067bfb
+    param.x448.d_src[8] |= 128;
067bfb
+
067bfb
+    rc = s390x_pcc(S390X_SCALAR_MULTIPLY_X448, &param.x448) ? 0 : 1;
067bfb
+    if (rc == 1) {
067bfb
+        s390x_flip_endian64(param.x448.u_dst, param.x448.u_dst);
067bfb
+        memcpy(u_dst, param.x448.u_dst, 56);
067bfb
+    }
067bfb
+
067bfb
+    OPENSSL_cleanse(param.x448.d_src, sizeof(param.x448.d_src));
067bfb
+    return rc;
067bfb
+}
067bfb
+
067bfb
+static int s390x_ed25519_mul(unsigned char x_dst[32],
067bfb
+                             unsigned char y_dst[32],
067bfb
+                             const unsigned char x_src[32],
067bfb
+                             const unsigned char y_src[32],
067bfb
+                             const unsigned char d_src[32])
067bfb
+{
067bfb
+    union {
067bfb
+        struct {
067bfb
+            unsigned char x_dst[32];
067bfb
+            unsigned char y_dst[32];
067bfb
+            unsigned char x_src[32];
067bfb
+            unsigned char y_src[32];
067bfb
+            unsigned char d_src[32];
067bfb
+        } ed25519;
067bfb
+        unsigned long long buff[512];
067bfb
+    } param;
067bfb
+    int rc;
067bfb
+
067bfb
+    memset(&param, 0, sizeof(param));
067bfb
+
067bfb
+    s390x_flip_endian32(param.ed25519.x_src, x_src);
067bfb
+    s390x_flip_endian32(param.ed25519.y_src, y_src);
067bfb
+    s390x_flip_endian32(param.ed25519.d_src, d_src);
067bfb
+
067bfb
+    rc = s390x_pcc(S390X_SCALAR_MULTIPLY_ED25519, &param.ed25519) ? 0 : 1;
067bfb
+    if (rc == 1) {
067bfb
+        s390x_flip_endian32(x_dst, param.ed25519.x_dst);
067bfb
+        s390x_flip_endian32(y_dst, param.ed25519.y_dst);
067bfb
+    }
067bfb
+
067bfb
+    OPENSSL_cleanse(param.ed25519.d_src, sizeof(param.ed25519.d_src));
067bfb
+    return rc;
067bfb
+}
067bfb
+
067bfb
+static int s390x_ed448_mul(unsigned char x_dst[57],
067bfb
+                           unsigned char y_dst[57],
067bfb
+                           const unsigned char x_src[57],
067bfb
+                           const unsigned char y_src[57],
067bfb
+                           const unsigned char d_src[57])
067bfb
+{
067bfb
+    union {
067bfb
+        struct {
067bfb
+            unsigned char x_dst[64];
067bfb
+            unsigned char y_dst[64];
067bfb
+            unsigned char x_src[64];
067bfb
+            unsigned char y_src[64];
067bfb
+            unsigned char d_src[64];
067bfb
+        } ed448;
067bfb
+        unsigned long long buff[512];
067bfb
+    } param;
067bfb
+    int rc;
067bfb
+
067bfb
+    memset(&param, 0, sizeof(param));
067bfb
+
067bfb
+    memcpy(param.ed448.x_src, x_src, 57);
067bfb
+    memcpy(param.ed448.y_src, y_src, 57);
067bfb
+    memcpy(param.ed448.d_src, d_src, 57);
067bfb
+    s390x_flip_endian64(param.ed448.x_src, param.ed448.x_src);
067bfb
+    s390x_flip_endian64(param.ed448.y_src, param.ed448.y_src);
067bfb
+    s390x_flip_endian64(param.ed448.d_src, param.ed448.d_src);
067bfb
+
067bfb
+    rc = s390x_pcc(S390X_SCALAR_MULTIPLY_ED448, &param.ed448) ? 0 : 1;
067bfb
+    if (rc == 1) {
067bfb
+        s390x_flip_endian64(param.ed448.x_dst, param.ed448.x_dst);
067bfb
+        s390x_flip_endian64(param.ed448.y_dst, param.ed448.y_dst);
067bfb
+        memcpy(x_dst, param.ed448.x_dst, 57);
067bfb
+        memcpy(y_dst, param.ed448.y_dst, 57);
067bfb
+    }
067bfb
+
067bfb
+    OPENSSL_cleanse(param.ed448.d_src, sizeof(param.ed448.d_src));
067bfb
+    return rc;
067bfb
+}
067bfb
+
067bfb
+static int s390x_pkey_ecx_keygen25519(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey)
067bfb
+{
067bfb
+    static const unsigned char generator[] = {
067bfb
+        0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
067bfb
+        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
067bfb
+        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
067bfb
+    };
067bfb
+    ECX_KEY *key;
067bfb
+    unsigned char *privkey = NULL, *pubkey;
067bfb
+
067bfb
+    key = OPENSSL_zalloc(sizeof(*key));
067bfb
+    if (key == NULL) {
067bfb
+        ECerr(EC_F_S390X_PKEY_ECX_KEYGEN25519, ERR_R_MALLOC_FAILURE);
067bfb
+        goto err;
067bfb
+    }
067bfb
+
067bfb
+    pubkey = key->pubkey;
067bfb
+
067bfb
+    privkey = key->privkey = OPENSSL_secure_malloc(X25519_KEYLEN);
067bfb
+    if (privkey == NULL) {
067bfb
+        ECerr(EC_F_S390X_PKEY_ECX_KEYGEN25519, ERR_R_MALLOC_FAILURE);
067bfb
+        goto err;
067bfb
+    }
067bfb
+
067bfb
+    if (RAND_priv_bytes(privkey, X25519_KEYLEN) <= 0)
067bfb
+        goto err;
067bfb
+
067bfb
+    privkey[0] &= 248;
067bfb
+    privkey[31] &= 127;
067bfb
+    privkey[31] |= 64;
067bfb
+
067bfb
+    if (s390x_x25519_mul(pubkey, generator, privkey) != 1)
067bfb
+        goto err;
067bfb
+
067bfb
+    EVP_PKEY_assign(pkey, ctx->pmeth->pkey_id, key);
067bfb
+    return 1;
067bfb
+ err:
067bfb
+    OPENSSL_secure_clear_free(privkey, X25519_KEYLEN);
067bfb
+    key->privkey = NULL;
067bfb
+    OPENSSL_free(key);
067bfb
+    return 0;
067bfb
+}
067bfb
+
067bfb
+static int s390x_pkey_ecx_keygen448(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey)
067bfb
+{
067bfb
+    static const unsigned char generator[] = {
067bfb
+        0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
067bfb
+        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
067bfb
+        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
067bfb
+        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
067bfb
+        0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
067bfb
+    };
067bfb
+    ECX_KEY *key;
067bfb
+    unsigned char *privkey = NULL, *pubkey;
067bfb
+
067bfb
+    key = OPENSSL_zalloc(sizeof(*key));
067bfb
+    if (key == NULL) {
067bfb
+        ECerr(EC_F_S390X_PKEY_ECX_KEYGEN448, ERR_R_MALLOC_FAILURE);
067bfb
+        goto err;
067bfb
+    }
067bfb
+
067bfb
+    pubkey = key->pubkey;
067bfb
+
067bfb
+    privkey = key->privkey = OPENSSL_secure_malloc(X448_KEYLEN);
067bfb
+    if (privkey == NULL) {
067bfb
+        ECerr(EC_F_S390X_PKEY_ECX_KEYGEN448, ERR_R_MALLOC_FAILURE);
067bfb
+        goto err;
067bfb
+    }
067bfb
+
067bfb
+    if (RAND_priv_bytes(privkey, X448_KEYLEN) <= 0)
067bfb
+        goto err;
067bfb
+
067bfb
+    privkey[0] &= 252;
067bfb
+    privkey[55] |= 128;
067bfb
+
067bfb
+    if (s390x_x448_mul(pubkey, generator, privkey) != 1)
067bfb
+        goto err;
067bfb
+
067bfb
+    EVP_PKEY_assign(pkey, ctx->pmeth->pkey_id, key);
067bfb
+    return 1;
067bfb
+ err:
067bfb
+    OPENSSL_secure_clear_free(privkey, X448_KEYLEN);
067bfb
+    key->privkey = NULL;
067bfb
+    OPENSSL_free(key);
067bfb
+    return 0;
067bfb
+}
067bfb
+
067bfb
+static int s390x_pkey_ecd_keygen25519(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey)
067bfb
+{
067bfb
+    static const unsigned char generator_x[] = {
067bfb
+        0x1a, 0xd5, 0x25, 0x8f, 0x60, 0x2d, 0x56, 0xc9, 0xb2, 0xa7, 0x25, 0x95,
067bfb
+        0x60, 0xc7, 0x2c, 0x69, 0x5c, 0xdc, 0xd6, 0xfd, 0x31, 0xe2, 0xa4, 0xc0,
067bfb
+        0xfe, 0x53, 0x6e, 0xcd, 0xd3, 0x36, 0x69, 0x21
067bfb
+    };
067bfb
+    static const unsigned char generator_y[] = {
067bfb
+        0x58, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66,
067bfb
+        0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66,
067bfb
+        0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66,
067bfb
+    };
067bfb
+    unsigned char x_dst[32], buff[SHA512_DIGEST_LENGTH];
067bfb
+    ECX_KEY *key;
067bfb
+    unsigned char *privkey = NULL, *pubkey;
067bfb
+
067bfb
+    key = OPENSSL_zalloc(sizeof(*key));
067bfb
+    if (key == NULL) {
067bfb
+        ECerr(EC_F_S390X_PKEY_ECD_KEYGEN25519, ERR_R_MALLOC_FAILURE);
067bfb
+        goto err;
067bfb
+    }
067bfb
+
067bfb
+    pubkey = key->pubkey;
067bfb
+
067bfb
+    privkey = key->privkey = OPENSSL_secure_malloc(ED25519_KEYLEN);
067bfb
+    if (privkey == NULL) {
067bfb
+        ECerr(EC_F_S390X_PKEY_ECD_KEYGEN25519, ERR_R_MALLOC_FAILURE);
067bfb
+        goto err;
067bfb
+    }
067bfb
+
067bfb
+    if (RAND_priv_bytes(privkey, ED25519_KEYLEN) <= 0)
067bfb
+        goto err;
067bfb
+
067bfb
+    SHA512(privkey, 32, buff);
067bfb
+    buff[0] &= 248;
067bfb
+    buff[31] &= 63;
067bfb
+    buff[31] |= 64;
067bfb
+
067bfb
+    if (s390x_ed25519_mul(x_dst, pubkey,
067bfb
+                          generator_x, generator_y, buff) != 1)
067bfb
+        goto err;
067bfb
+
067bfb
+    pubkey[31] |= ((x_dst[0] & 0x01) << 7);
067bfb
+
067bfb
+    EVP_PKEY_assign(pkey, ctx->pmeth->pkey_id, key);
067bfb
+    return 1;
067bfb
+ err:
067bfb
+    OPENSSL_secure_clear_free(privkey, ED25519_KEYLEN);
067bfb
+    key->privkey = NULL;
067bfb
+    OPENSSL_free(key);
067bfb
+    return 0;
067bfb
+}
067bfb
+
067bfb
+static int s390x_pkey_ecd_keygen448(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey)
067bfb
+{
067bfb
+    static const unsigned char generator_x[] = {
067bfb
+        0x5e, 0xc0, 0x0c, 0xc7, 0x2b, 0xa8, 0x26, 0x26, 0x8e, 0x93, 0x00, 0x8b,
067bfb
+        0xe1, 0x80, 0x3b, 0x43, 0x11, 0x65, 0xb6, 0x2a, 0xf7, 0x1a, 0xae, 0x12,
067bfb
+        0x64, 0xa4, 0xd3, 0xa3, 0x24, 0xe3, 0x6d, 0xea, 0x67, 0x17, 0x0f, 0x47,
067bfb
+        0x70, 0x65, 0x14, 0x9e, 0xda, 0x36, 0xbf, 0x22, 0xa6, 0x15, 0x1d, 0x22,
067bfb
+        0xed, 0x0d, 0xed, 0x6b, 0xc6, 0x70, 0x19, 0x4f, 0x00
067bfb
+    };
067bfb
+    static const unsigned char generator_y[] = {
067bfb
+        0x14, 0xfa, 0x30, 0xf2, 0x5b, 0x79, 0x08, 0x98, 0xad, 0xc8, 0xd7, 0x4e,
067bfb
+        0x2c, 0x13, 0xbd, 0xfd, 0xc4, 0x39, 0x7c, 0xe6, 0x1c, 0xff, 0xd3, 0x3a,
067bfb
+        0xd7, 0xc2, 0xa0, 0x05, 0x1e, 0x9c, 0x78, 0x87, 0x40, 0x98, 0xa3, 0x6c,
067bfb
+        0x73, 0x73, 0xea, 0x4b, 0x62, 0xc7, 0xc9, 0x56, 0x37, 0x20, 0x76, 0x88,
067bfb
+        0x24, 0xbc, 0xb6, 0x6e, 0x71, 0x46, 0x3f, 0x69, 0x00
067bfb
+    };
067bfb
+    unsigned char x_dst[57], buff[114];
067bfb
+    ECX_KEY *key;
067bfb
+    unsigned char *privkey = NULL, *pubkey;
067bfb
+    EVP_MD_CTX *hashctx = NULL;
067bfb
+
067bfb
+    key = OPENSSL_zalloc(sizeof(*key));
067bfb
+    if (key == NULL) {
067bfb
+        ECerr(EC_F_S390X_PKEY_ECD_KEYGEN448, ERR_R_MALLOC_FAILURE);
067bfb
+        goto err;
067bfb
+    }
067bfb
+
067bfb
+    pubkey = key->pubkey;
067bfb
+
067bfb
+    privkey = key->privkey = OPENSSL_secure_malloc(ED448_KEYLEN);
067bfb
+    if (privkey == NULL) {
067bfb
+        ECerr(EC_F_S390X_PKEY_ECD_KEYGEN448, ERR_R_MALLOC_FAILURE);
067bfb
+        goto err;
067bfb
+    }
067bfb
+
067bfb
+    if (RAND_priv_bytes(privkey, ED448_KEYLEN) <= 0)
067bfb
+        goto err;
067bfb
+
067bfb
+    hashctx = EVP_MD_CTX_new();
067bfb
+    if (hashctx == NULL)
067bfb
+        goto err;
067bfb
+    if (EVP_DigestInit_ex(hashctx, EVP_shake256(), NULL) != 1)
067bfb
+        goto err;
067bfb
+    if (EVP_DigestUpdate(hashctx, privkey, 57) != 1)
067bfb
+        goto err;
067bfb
+    if (EVP_DigestFinalXOF(hashctx, buff, sizeof(buff)) != 1)
067bfb
+        goto err;
067bfb
+
067bfb
+    buff[0] &= -4;
067bfb
+    buff[55] |= 0x80;
067bfb
+    buff[56] = 0;
067bfb
+
067bfb
+    if (s390x_ed448_mul(x_dst, pubkey,
067bfb
+                        generator_x, generator_y, buff) != 1)
067bfb
+        goto err;
067bfb
+
067bfb
+    pubkey[56] |= ((x_dst[0] & 0x01) << 7);
067bfb
+
067bfb
+    EVP_PKEY_assign(pkey, ctx->pmeth->pkey_id, key);
067bfb
+    EVP_MD_CTX_free(hashctx);
067bfb
+    return 1;
067bfb
+ err:
067bfb
+    OPENSSL_secure_clear_free(privkey, ED448_KEYLEN);
067bfb
+    key->privkey = NULL;
067bfb
+    OPENSSL_free(key);
067bfb
+    EVP_MD_CTX_free(hashctx);
067bfb
+    return 0;
067bfb
+}
067bfb
+
067bfb
+static int s390x_pkey_ecx_derive25519(EVP_PKEY_CTX *ctx, unsigned char *key,
067bfb
+                                      size_t *keylen)
067bfb
+{
067bfb
+    const unsigned char *privkey, *pubkey;
067bfb
+
067bfb
+    if (!validate_ecx_derive(ctx, key, keylen, &privkey, &pubkey))
067bfb
+        return 0;
067bfb
+
067bfb
+    if (key != NULL)
067bfb
+        return s390x_x25519_mul(key, pubkey, privkey);
067bfb
+
067bfb
+    *keylen = X25519_KEYLEN;
067bfb
+    return 1;
067bfb
+}
067bfb
+
067bfb
+static int s390x_pkey_ecx_derive448(EVP_PKEY_CTX *ctx, unsigned char *key,
067bfb
+                                      size_t *keylen)
067bfb
+{
067bfb
+    const unsigned char *privkey, *pubkey;
067bfb
+
067bfb
+    if (!validate_ecx_derive(ctx, key, keylen, &privkey, &pubkey))
067bfb
+        return 0;
067bfb
+
067bfb
+    if (key != NULL)
067bfb
+        return s390x_x448_mul(key, pubkey, privkey);
067bfb
+
067bfb
+    *keylen = X448_KEYLEN;
067bfb
+    return 1;
067bfb
+}
067bfb
+
067bfb
+static int s390x_pkey_ecd_digestsign25519(EVP_MD_CTX *ctx,
067bfb
+                                          unsigned char *sig, size_t *siglen,
067bfb
+                                          const unsigned char *tbs,
067bfb
+                                          size_t tbslen)
067bfb
+{
067bfb
+    union {
067bfb
+        struct {
067bfb
+            unsigned char sig[64];
067bfb
+            unsigned char priv[32];
067bfb
+        } ed25519;
067bfb
+        unsigned long long buff[512];
067bfb
+    } param;
067bfb
+    const ECX_KEY *edkey = EVP_MD_CTX_pkey_ctx(ctx)->pkey->pkey.ecx;
067bfb
+    int rc;
067bfb
+
067bfb
+    if (sig == NULL) {
067bfb
+        *siglen = ED25519_SIGSIZE;
067bfb
+        return 1;
067bfb
+    }
067bfb
+
067bfb
+    if (*siglen < ED25519_SIGSIZE) {
067bfb
+        ECerr(EC_F_S390X_PKEY_ECD_DIGESTSIGN25519, EC_R_BUFFER_TOO_SMALL);
067bfb
+        return 0;
067bfb
+    }
067bfb
+
067bfb
+    memset(&param, 0, sizeof(param));
067bfb
+    memcpy(param.ed25519.priv, edkey->privkey, sizeof(param.ed25519.priv));
067bfb
+
067bfb
+    rc = s390x_kdsa(S390X_EDDSA_SIGN_ED25519, &param.ed25519, tbs, tbslen);
067bfb
+    OPENSSL_cleanse(param.ed25519.priv, sizeof(param.ed25519.priv));
067bfb
+    if (rc != 0)
067bfb
+        return 0;
067bfb
+
067bfb
+    s390x_flip_endian32(sig, param.ed25519.sig);
067bfb
+    s390x_flip_endian32(sig + 32, param.ed25519.sig + 32);
067bfb
+
067bfb
+    *siglen = ED25519_SIGSIZE;
067bfb
+    return 1;
067bfb
+}
067bfb
+
067bfb
+static int s390x_pkey_ecd_digestsign448(EVP_MD_CTX *ctx,
067bfb
+                                        unsigned char *sig, size_t *siglen,
067bfb
+                                        const unsigned char *tbs,
067bfb
+                                        size_t tbslen)
067bfb
+{
067bfb
+    union {
067bfb
+        struct {
067bfb
+            unsigned char sig[128];
067bfb
+            unsigned char priv[64];
067bfb
+        } ed448;
067bfb
+        unsigned long long buff[512];
067bfb
+    } param;
067bfb
+    const ECX_KEY *edkey = EVP_MD_CTX_pkey_ctx(ctx)->pkey->pkey.ecx;
067bfb
+    int rc;
067bfb
+
067bfb
+    if (sig == NULL) {
067bfb
+        *siglen = ED448_SIGSIZE;
067bfb
+        return 1;
067bfb
+    }
067bfb
+
067bfb
+    if (*siglen < ED448_SIGSIZE) {
067bfb
+        ECerr(EC_F_S390X_PKEY_ECD_DIGESTSIGN448, EC_R_BUFFER_TOO_SMALL);
067bfb
+        return 0;
067bfb
+    }
067bfb
+
067bfb
+    memset(&param, 0, sizeof(param));
067bfb
+    memcpy(param.ed448.priv + 64 - 57, edkey->privkey, 57);
067bfb
+
067bfb
+    rc = s390x_kdsa(S390X_EDDSA_SIGN_ED448, &param.ed448, tbs, tbslen);
067bfb
+    OPENSSL_cleanse(param.ed448.priv, sizeof(param.ed448.priv));
067bfb
+    if (rc != 0)
067bfb
+        return 0;
067bfb
+
067bfb
+    s390x_flip_endian64(param.ed448.sig, param.ed448.sig);
067bfb
+    s390x_flip_endian64(param.ed448.sig + 64, param.ed448.sig + 64);
067bfb
+    memcpy(sig, param.ed448.sig, 57);
067bfb
+    memcpy(sig + 57, param.ed448.sig + 64, 57);
067bfb
+
067bfb
+    *siglen = ED448_SIGSIZE;
067bfb
+    return 1;
067bfb
+}
067bfb
+
067bfb
+static int s390x_pkey_ecd_digestverify25519(EVP_MD_CTX *ctx,
067bfb
+                                            const unsigned char *sig,
067bfb
+                                            size_t siglen,
067bfb
+                                            const unsigned char *tbs,
067bfb
+                                            size_t tbslen)
067bfb
+{
067bfb
+    union {
067bfb
+        struct {
067bfb
+            unsigned char sig[64];
067bfb
+            unsigned char pub[32];
067bfb
+        } ed25519;
067bfb
+        unsigned long long buff[512];
067bfb
+    } param;
067bfb
+    const ECX_KEY *edkey = EVP_MD_CTX_pkey_ctx(ctx)->pkey->pkey.ecx;
067bfb
+
067bfb
+    if (siglen != ED25519_SIGSIZE)
067bfb
+        return 0;
067bfb
+
067bfb
+    memset(&param, 0, sizeof(param));
067bfb
+    s390x_flip_endian32(param.ed25519.sig, sig);
067bfb
+    s390x_flip_endian32(param.ed25519.sig + 32, sig + 32);
067bfb
+    s390x_flip_endian32(param.ed25519.pub, edkey->pubkey);
067bfb
+
067bfb
+    return s390x_kdsa(S390X_EDDSA_VERIFY_ED25519,
067bfb
+                      &param.ed25519, tbs, tbslen) == 0 ? 1 : 0;
067bfb
+}
067bfb
+
067bfb
+static int s390x_pkey_ecd_digestverify448(EVP_MD_CTX *ctx,
067bfb
+                                          const unsigned char *sig,
067bfb
+                                          size_t siglen,
067bfb
+                                          const unsigned char *tbs,
067bfb
+                                          size_t tbslen)
067bfb
+{
067bfb
+    union {
067bfb
+        struct {
067bfb
+            unsigned char sig[128];
067bfb
+            unsigned char pub[64];
067bfb
+        } ed448;
067bfb
+        unsigned long long buff[512];
067bfb
+    } param;
067bfb
+    const ECX_KEY *edkey = EVP_MD_CTX_pkey_ctx(ctx)->pkey->pkey.ecx;
067bfb
+
067bfb
+    if (siglen != ED448_SIGSIZE)
067bfb
+        return 0;
067bfb
+
067bfb
+    memset(&param, 0, sizeof(param));
067bfb
+    memcpy(param.ed448.sig, sig, 57);
067bfb
+    s390x_flip_endian64(param.ed448.sig, param.ed448.sig);
067bfb
+    memcpy(param.ed448.sig + 64, sig + 57, 57);
067bfb
+    s390x_flip_endian64(param.ed448.sig + 64, param.ed448.sig + 64);
067bfb
+    memcpy(param.ed448.pub, edkey->pubkey, 57);
067bfb
+    s390x_flip_endian64(param.ed448.pub, param.ed448.pub);
067bfb
+
067bfb
+    return s390x_kdsa(S390X_EDDSA_VERIFY_ED448,
067bfb
+                      &param.ed448, tbs, tbslen) == 0 ? 1 : 0;
067bfb
+}
067bfb
+
067bfb
+static const EVP_PKEY_METHOD ecx25519_s390x_pkey_meth = {
067bfb
+    EVP_PKEY_X25519,
067bfb
+    0, 0, 0, 0, 0, 0, 0,
067bfb
+    s390x_pkey_ecx_keygen25519,
067bfb
+    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
067bfb
+    s390x_pkey_ecx_derive25519,
067bfb
+    pkey_ecx_ctrl,
067bfb
+    0
067bfb
+};
067bfb
+
067bfb
+static const EVP_PKEY_METHOD ecx448_s390x_pkey_meth = {
067bfb
+    EVP_PKEY_X448,
067bfb
+    0, 0, 0, 0, 0, 0, 0,
067bfb
+    s390x_pkey_ecx_keygen448,
067bfb
+    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
067bfb
+    s390x_pkey_ecx_derive448,
067bfb
+    pkey_ecx_ctrl,
067bfb
+    0
067bfb
+};
067bfb
+static const EVP_PKEY_METHOD ed25519_s390x_pkey_meth = {
067bfb
+    EVP_PKEY_ED25519, EVP_PKEY_FLAG_SIGCTX_CUSTOM,
067bfb
+    0, 0, 0, 0, 0, 0,
067bfb
+    s390x_pkey_ecd_keygen25519,
067bfb
+    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
067bfb
+    pkey_ecd_ctrl,
067bfb
+    0,
067bfb
+    s390x_pkey_ecd_digestsign25519,
067bfb
+    s390x_pkey_ecd_digestverify25519
067bfb
+};
067bfb
+
067bfb
+static const EVP_PKEY_METHOD ed448_s390x_pkey_meth = {
067bfb
+    EVP_PKEY_ED448, EVP_PKEY_FLAG_SIGCTX_CUSTOM,
067bfb
+    0, 0, 0, 0, 0, 0,
067bfb
+    s390x_pkey_ecd_keygen448,
067bfb
+    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
067bfb
+    pkey_ecd_ctrl,
067bfb
+    0,
067bfb
+    s390x_pkey_ecd_digestsign448,
067bfb
+    s390x_pkey_ecd_digestverify448
067bfb
+};
067bfb
+#endif
067bfb
+
067bfb
+const EVP_PKEY_METHOD *ecx25519_pkey_method(void)
067bfb
+{
067bfb
+#ifdef S390X_EC_ASM
067bfb
+    if (OPENSSL_s390xcap_P.pcc[1] & S390X_CAPBIT(S390X_SCALAR_MULTIPLY_X25519))
067bfb
+        return &ecx25519_s390x_pkey_meth;
067bfb
+#endif
067bfb
+    return &ecx25519_pkey_meth;
067bfb
+}
067bfb
+
067bfb
+const EVP_PKEY_METHOD *ecx448_pkey_method(void)
067bfb
+{
067bfb
+#ifdef S390X_EC_ASM
067bfb
+    if (OPENSSL_s390xcap_P.pcc[1] & S390X_CAPBIT(S390X_SCALAR_MULTIPLY_X448))
067bfb
+        return &ecx448_s390x_pkey_meth;
067bfb
+#endif
067bfb
+    return &ecx448_pkey_meth;
067bfb
+}
067bfb
+
067bfb
+const EVP_PKEY_METHOD *ed25519_pkey_method(void)
067bfb
+{
067bfb
+#ifdef S390X_EC_ASM
067bfb
+    if (OPENSSL_s390xcap_P.pcc[1] & S390X_CAPBIT(S390X_SCALAR_MULTIPLY_ED25519)
067bfb
+        && OPENSSL_s390xcap_P.kdsa[0] & S390X_CAPBIT(S390X_EDDSA_SIGN_ED25519)
067bfb
+        && OPENSSL_s390xcap_P.kdsa[0]
067bfb
+            & S390X_CAPBIT(S390X_EDDSA_VERIFY_ED25519))
067bfb
+        return &ed25519_s390x_pkey_meth;
067bfb
+#endif
067bfb
+    return &ed25519_pkey_meth;
067bfb
+}
067bfb
+
067bfb
+const EVP_PKEY_METHOD *ed448_pkey_method(void)
067bfb
+{
067bfb
+#ifdef S390X_EC_ASM
067bfb
+    if (OPENSSL_s390xcap_P.pcc[1] & S390X_CAPBIT(S390X_SCALAR_MULTIPLY_ED448)
067bfb
+        && OPENSSL_s390xcap_P.kdsa[0] & S390X_CAPBIT(S390X_EDDSA_SIGN_ED448)
067bfb
+        && OPENSSL_s390xcap_P.kdsa[0] & S390X_CAPBIT(S390X_EDDSA_VERIFY_ED448))
067bfb
+        return &ed448_s390x_pkey_meth;
067bfb
+#endif
067bfb
+    return &ed448_pkey_meth;
067bfb
+}
7d1228
diff -up openssl-1.1.1g/crypto/err/openssl.txt.s390x-ecc openssl-1.1.1g/crypto/err/openssl.txt
7d1228
--- openssl-1.1.1g/crypto/err/openssl.txt.s390x-ecc	2020-05-18 12:45:40.834234079 +0200
7d1228
+++ openssl-1.1.1g/crypto/err/openssl.txt	2020-05-18 12:45:44.575266592 +0200
7d1228
@@ -496,6 +496,11 @@ EC_F_ECDSA_SIGN_EX:254:ECDSA_sign_ex
067bfb
 EC_F_ECDSA_SIGN_SETUP:248:ECDSA_sign_setup
067bfb
 EC_F_ECDSA_SIG_NEW:265:ECDSA_SIG_new
067bfb
 EC_F_ECDSA_VERIFY:253:ECDSA_verify
067bfb
+EC_F_ECDSA_SIMPLE_SIGN_SETUP:310:ecdsa_simple_sign_setup
067bfb
+EC_F_ECDSA_SIMPLE_SIGN_SIG:311:ecdsa_simple_sign_sig
067bfb
+EC_F_ECDSA_SIMPLE_VERIFY_SIG:312:ecdsa_simple_verify_sig
067bfb
+EC_F_ECDSA_S390X_NISTP_SIGN_SIG:313:ecdsa_s390x_nistp_sign_sig
067bfb
+EC_F_ECDSA_S390X_NISTP_VERIFY_SIG:314:ecdsa_s390x_nistp_verify_sig
067bfb
 EC_F_ECD_ITEM_VERIFY:270:ecd_item_verify
067bfb
 EC_F_ECKEY_PARAM2TYPE:223:eckey_param2type
067bfb
 EC_F_ECKEY_PARAM_DECODE:212:eckey_param_decode
7d1228
@@ -657,6 +662,7 @@ EC_F_NISTP521_PRE_COMP_NEW:237:nistp521_
067bfb
 EC_F_O2I_ECPUBLICKEY:152:o2i_ECPublicKey
067bfb
 EC_F_OLD_EC_PRIV_DECODE:222:old_ec_priv_decode
067bfb
 EC_F_OSSL_ECDH_COMPUTE_KEY:247:ossl_ecdh_compute_key
067bfb
+EC_F_OSSL_ECDSA_SIGN_SETUP:300:ossl_ecdsa_sign_setup
067bfb
 EC_F_OSSL_ECDSA_SIGN_SIG:249:ossl_ecdsa_sign_sig
067bfb
 EC_F_OSSL_ECDSA_VERIFY_SIG:250:ossl_ecdsa_verify_sig
067bfb
 EC_F_PKEY_ECD_CTRL:271:pkey_ecd_ctrl
7d1228
@@ -672,6 +678,12 @@ EC_F_PKEY_EC_KDF_DERIVE:283:pkey_ec_kdf_
067bfb
 EC_F_PKEY_EC_KEYGEN:199:pkey_ec_keygen
067bfb
 EC_F_PKEY_EC_PARAMGEN:219:pkey_ec_paramgen
067bfb
 EC_F_PKEY_EC_SIGN:218:pkey_ec_sign
067bfb
+EC_F_S390X_PKEY_ECD_DIGESTSIGN25519:303:s390x_pkey_ecd_digestsign25519
067bfb
+EC_F_S390X_PKEY_ECD_DIGESTSIGN448:304:s390x_pkey_ecd_digestsign448
067bfb
+EC_F_S390X_PKEY_ECD_KEYGEN25519:305:s390x_pkey_ecd_keygen25519
067bfb
+EC_F_S390X_PKEY_ECD_KEYGEN448:306:s390x_pkey_ecd_keygen448
067bfb
+EC_F_S390X_PKEY_ECX_KEYGEN25519:307:s390x_pkey_ecx_keygen25519
067bfb
+EC_F_S390X_PKEY_ECX_KEYGEN448:308:s390x_pkey_ecx_keygen448
067bfb
 EC_F_VALIDATE_ECX_DERIVE:278:validate_ecx_derive
067bfb
 ENGINE_F_DIGEST_UPDATE:198:digest_update
067bfb
 ENGINE_F_DYNAMIC_CTRL:180:dynamic_ctrl
7d1228
@@ -2160,6 +2172,7 @@ EC_R_BUFFER_TOO_SMALL:100:buffer too sma
067bfb
 EC_R_CANNOT_INVERT:165:cannot invert
067bfb
 EC_R_COORDINATES_OUT_OF_RANGE:146:coordinates out of range
067bfb
 EC_R_CURVE_DOES_NOT_SUPPORT_ECDH:160:curve does not support ecdh
067bfb
+EC_R_CURVE_DOES_NOT_SUPPORT_ECDSA:170:curve does not support ecdsa
067bfb
 EC_R_CURVE_DOES_NOT_SUPPORT_SIGNING:159:curve does not support signing
067bfb
 EC_R_D2I_ECPKPARAMETERS_FAILURE:117:d2i ecpkparameters failure
067bfb
 EC_R_DECODE_ERROR:142:decode error
7d1228
diff -up openssl-1.1.1g/crypto/evp/pmeth_lib.c.s390x-ecc openssl-1.1.1g/crypto/evp/pmeth_lib.c
7d1228
--- openssl-1.1.1g/crypto/evp/pmeth_lib.c.s390x-ecc	2020-05-18 12:45:40.787233671 +0200
7d1228
+++ openssl-1.1.1g/crypto/evp/pmeth_lib.c	2020-05-18 12:45:44.576266601 +0200
067bfb
@@ -17,60 +17,67 @@
7d1228
 #include "crypto/evp.h"
067bfb
 #include "internal/numbers.h"
067bfb
 
067bfb
+typedef const EVP_PKEY_METHOD *(*pmeth_fn)(void);
067bfb
 typedef int sk_cmp_fn_type(const char *const *a, const char *const *b);
067bfb
 
067bfb
 static STACK_OF(EVP_PKEY_METHOD) *app_pkey_methods = NULL;
067bfb
 
067bfb
 /* This array needs to be in order of NIDs */
067bfb
-static const EVP_PKEY_METHOD *standard_methods[] = {
067bfb
+static pmeth_fn standard_methods[] = {
067bfb
 #ifndef OPENSSL_NO_RSA
067bfb
-    &rsa_pkey_meth,
067bfb
+    rsa_pkey_method,
067bfb
 #endif
067bfb
 #ifndef OPENSSL_NO_DH
067bfb
-    &dh_pkey_meth,
067bfb
+    dh_pkey_method,
067bfb
 #endif
067bfb
 #ifndef OPENSSL_NO_DSA
067bfb
-    &dsa_pkey_meth,
067bfb
+    dsa_pkey_method,
067bfb
 #endif
067bfb
 #ifndef OPENSSL_NO_EC
067bfb
-    &ec_pkey_meth,
067bfb
+    ec_pkey_method,
067bfb
 #endif
067bfb
-    &hmac_pkey_meth,
067bfb
+    hmac_pkey_method,
067bfb
 #ifndef OPENSSL_NO_CMAC
067bfb
-    &cmac_pkey_meth,
067bfb
+    cmac_pkey_method,
067bfb
 #endif
067bfb
 #ifndef OPENSSL_NO_RSA
067bfb
-    &rsa_pss_pkey_meth,
067bfb
+    rsa_pss_pkey_method,
067bfb
 #endif
067bfb
 #ifndef OPENSSL_NO_DH
067bfb
-    &dhx_pkey_meth,
067bfb
+    dhx_pkey_method,
067bfb
 #endif
067bfb
 #ifndef OPENSSL_NO_SCRYPT
067bfb
-    &scrypt_pkey_meth,
067bfb
+    scrypt_pkey_method,
067bfb
 #endif
067bfb
-    &tls1_prf_pkey_meth,
067bfb
+    tls1_prf_pkey_method,
067bfb
 #ifndef OPENSSL_NO_EC
067bfb
-    &ecx25519_pkey_meth,
067bfb
-    &ecx448_pkey_meth,
067bfb
+    ecx25519_pkey_method,
067bfb
+    ecx448_pkey_method,
067bfb
 #endif
067bfb
-    &hkdf_pkey_meth,
067bfb
+    hkdf_pkey_method,
067bfb
 #ifndef OPENSSL_NO_POLY1305
067bfb
-    &poly1305_pkey_meth,
067bfb
+    poly1305_pkey_method,
067bfb
 #endif
067bfb
 #ifndef OPENSSL_NO_SIPHASH
067bfb
-    &siphash_pkey_meth,
067bfb
+    siphash_pkey_method,
067bfb
 #endif
067bfb
 #ifndef OPENSSL_NO_EC
067bfb
-    &ed25519_pkey_meth,
067bfb
-    &ed448_pkey_meth,
067bfb
+    ed25519_pkey_method,
067bfb
+    ed448_pkey_method,
067bfb
 #endif
067bfb
 #ifndef OPENSSL_NO_SM2
067bfb
-    &sm2_pkey_meth,
067bfb
+    sm2_pkey_method,
067bfb
 #endif
067bfb
 };
067bfb
 
067bfb
-DECLARE_OBJ_BSEARCH_CMP_FN(const EVP_PKEY_METHOD *, const EVP_PKEY_METHOD *,
067bfb
-                           pmeth);
067bfb
+DECLARE_OBJ_BSEARCH_CMP_FN(const EVP_PKEY_METHOD *, pmeth_fn, pmeth_func);
067bfb
+
067bfb
+static int pmeth_func_cmp(const EVP_PKEY_METHOD *const *a, pmeth_fn const *b)
067bfb
+{
067bfb
+    return ((*a)->pkey_id - ((**b)())->pkey_id);
067bfb
+}
067bfb
+
067bfb
+IMPLEMENT_OBJ_BSEARCH_CMP_FN(const EVP_PKEY_METHOD *, pmeth_fn, pmeth_func);
067bfb
 
067bfb
 static int pmeth_cmp(const EVP_PKEY_METHOD *const *a,
067bfb
                      const EVP_PKEY_METHOD *const *b)
067bfb
@@ -78,13 +85,11 @@ static int pmeth_cmp(const EVP_PKEY_METH
067bfb
     return ((*a)->pkey_id - (*b)->pkey_id);
067bfb
 }
067bfb
 
067bfb
-IMPLEMENT_OBJ_BSEARCH_CMP_FN(const EVP_PKEY_METHOD *, const EVP_PKEY_METHOD *,
067bfb
-                             pmeth);
067bfb
-
067bfb
 const EVP_PKEY_METHOD *EVP_PKEY_meth_find(int type)
067bfb
 {
067bfb
+    pmeth_fn *ret;
067bfb
     EVP_PKEY_METHOD tmp;
067bfb
-    const EVP_PKEY_METHOD *t = &tmp, **ret;
067bfb
+    const EVP_PKEY_METHOD *t = &tm;;
067bfb
     tmp.pkey_id = type;
067bfb
     if (app_pkey_methods) {
067bfb
         int idx;
067bfb
@@ -92,12 +97,12 @@ const EVP_PKEY_METHOD *EVP_PKEY_meth_fin
067bfb
         if (idx >= 0)
067bfb
             return sk_EVP_PKEY_METHOD_value(app_pkey_methods, idx);
067bfb
     }
067bfb
-    ret = OBJ_bsearch_pmeth(&t, standard_methods,
067bfb
-                            sizeof(standard_methods) /
067bfb
-                            sizeof(EVP_PKEY_METHOD *));
067bfb
+    ret = OBJ_bsearch_pmeth_func(&t, standard_methods,
067bfb
+                                 sizeof(standard_methods) /
067bfb
+                                 sizeof(pmeth_fn));
067bfb
     if (!ret || !*ret)
067bfb
         return NULL;
067bfb
-    return *ret;
067bfb
+    return (**ret)();
067bfb
 }
067bfb
 
067bfb
 static EVP_PKEY_CTX *int_ctx_new(EVP_PKEY *pkey, ENGINE *e, int id)
067bfb
@@ -348,7 +353,7 @@ size_t EVP_PKEY_meth_get_count(void)
067bfb
 const EVP_PKEY_METHOD *EVP_PKEY_meth_get0(size_t idx)
067bfb
 {
067bfb
     if (idx < OSSL_NELEM(standard_methods))
067bfb
-        return standard_methods[idx];
067bfb
+        return (standard_methods[idx])();
067bfb
     if (app_pkey_methods == NULL)
067bfb
         return NULL;
067bfb
     idx -= OSSL_NELEM(standard_methods);
7d1228
diff -up openssl-1.1.1g/crypto/hmac/hm_pmeth.c.s390x-ecc openssl-1.1.1g/crypto/hmac/hm_pmeth.c
7d1228
--- openssl-1.1.1g/crypto/hmac/hm_pmeth.c.s390x-ecc	2020-05-18 12:45:40.796233749 +0200
7d1228
+++ openssl-1.1.1g/crypto/hmac/hm_pmeth.c	2020-05-18 12:45:44.576266601 +0200
067bfb
@@ -210,3 +210,8 @@ const EVP_PKEY_METHOD hmac_pkey_meth = {
067bfb
     pkey_hmac_ctrl,
067bfb
     pkey_hmac_ctrl_str
067bfb
 };
067bfb
+
067bfb
+const EVP_PKEY_METHOD *hmac_pkey_method(void)
067bfb
+{
067bfb
+    return &hmac_pkey_meth;
067bfb
+}
7d1228
diff -up openssl-1.1.1g/crypto/kdf/hkdf.c.s390x-ecc openssl-1.1.1g/crypto/kdf/hkdf.c
7d1228
--- openssl-1.1.1g/crypto/kdf/hkdf.c.s390x-ecc	2020-05-18 12:45:40.826234009 +0200
7d1228
+++ openssl-1.1.1g/crypto/kdf/hkdf.c	2020-05-18 12:45:44.577266609 +0200
067bfb
@@ -233,6 +233,11 @@ const EVP_KDF_METHOD hkdf_kdf_meth = {
067bfb
     kdf_hkdf_derive
067bfb
 };
067bfb
 
067bfb
+const EVP_PKEY_METHOD *hkdf_pkey_method(void)
067bfb
+{
067bfb
+    return &hkdf_pkey_meth;
067bfb
+}
067bfb
+
067bfb
 static int HKDF(const EVP_MD *evp_md,
067bfb
                 const unsigned char *salt, size_t salt_len,
067bfb
                 const unsigned char *key, size_t key_len,
7d1228
diff -up openssl-1.1.1g/crypto/kdf/scrypt.c.s390x-ecc openssl-1.1.1g/crypto/kdf/scrypt.c
7d1228
--- openssl-1.1.1g/crypto/kdf/scrypt.c.s390x-ecc	2020-05-18 12:45:40.827234018 +0200
7d1228
+++ openssl-1.1.1g/crypto/kdf/scrypt.c	2020-05-18 12:45:44.578266618 +0200
7d1228
@@ -504,4 +504,9 @@ static int scrypt_alg(const char *pass,
067bfb
     return rv;
067bfb
 }
067bfb
 
067bfb
+const EVP_PKEY_METHOD *scrypt_pkey_method(void)
067bfb
+{
067bfb
+    return &scrypt_pkey_meth;
067bfb
+}
067bfb
+
067bfb
 #endif
7d1228
diff -up openssl-1.1.1g/crypto/kdf/tls1_prf.c.s390x-ecc openssl-1.1.1g/crypto/kdf/tls1_prf.c
7d1228
--- openssl-1.1.1g/crypto/kdf/tls1_prf.c.s390x-ecc	2020-05-18 12:45:40.828234027 +0200
7d1228
+++ openssl-1.1.1g/crypto/kdf/tls1_prf.c	2020-05-18 12:45:44.578266618 +0200
067bfb
@@ -168,6 +168,11 @@ const EVP_KDF_METHOD tls1_prf_kdf_meth =
067bfb
     kdf_tls1_prf_derive
067bfb
 };
067bfb
 
067bfb
+const EVP_PKEY_METHOD *tls1_prf_pkey_method(void)
067bfb
+{
067bfb
+    return &tls1_prf_pkey_meth;
067bfb
+}
067bfb
+
067bfb
 static int tls1_prf_P_hash(const EVP_MD *md,
067bfb
                            const unsigned char *sec, size_t sec_len,
067bfb
                            const unsigned char *seed, size_t seed_len,
7d1228
diff -up openssl-1.1.1g/crypto/poly1305/poly1305_pmeth.c.s390x-ecc openssl-1.1.1g/crypto/poly1305/poly1305_pmeth.c
7d1228
--- openssl-1.1.1g/crypto/poly1305/poly1305_pmeth.c.s390x-ecc	2020-04-21 14:22:39.000000000 +0200
7d1228
+++ openssl-1.1.1g/crypto/poly1305/poly1305_pmeth.c	2020-05-18 12:45:44.579266627 +0200
067bfb
@@ -192,3 +192,8 @@ const EVP_PKEY_METHOD poly1305_pkey_meth
067bfb
     pkey_poly1305_ctrl,
067bfb
     pkey_poly1305_ctrl_str
067bfb
 };
067bfb
+
067bfb
+const EVP_PKEY_METHOD *poly1305_pkey_method(void)
067bfb
+{
067bfb
+    return &poly1305_pkey_meth;
067bfb
+}
7d1228
diff -up openssl-1.1.1g/crypto/rsa/rsa_pmeth.c.s390x-ecc openssl-1.1.1g/crypto/rsa/rsa_pmeth.c
7d1228
--- openssl-1.1.1g/crypto/rsa/rsa_pmeth.c.s390x-ecc	2020-05-18 12:45:40.798233766 +0200
7d1228
+++ openssl-1.1.1g/crypto/rsa/rsa_pmeth.c	2020-05-18 12:45:44.580266635 +0200
067bfb
@@ -789,6 +789,11 @@ const EVP_PKEY_METHOD rsa_pkey_meth = {
067bfb
     pkey_rsa_ctrl_str
067bfb
 };
067bfb
 
067bfb
+const EVP_PKEY_METHOD *rsa_pkey_method(void)
067bfb
+{
067bfb
+    return &rsa_pkey_meth;
067bfb
+}
067bfb
+
067bfb
 /*
067bfb
  * Called for PSS sign or verify initialisation: checks PSS parameter
067bfb
  * sanity and sets any restrictions on key usage.
067bfb
@@ -859,3 +864,8 @@ const EVP_PKEY_METHOD rsa_pss_pkey_meth
067bfb
     pkey_rsa_ctrl,
067bfb
     pkey_rsa_ctrl_str
067bfb
 };
067bfb
+
067bfb
+const EVP_PKEY_METHOD *rsa_pss_pkey_method(void)
067bfb
+{
067bfb
+    return &rsa_pss_pkey_meth;
067bfb
+}
7d1228
diff -up openssl-1.1.1g/crypto/s390x_arch.h.s390x-ecc openssl-1.1.1g/crypto/s390x_arch.h
7d1228
--- openssl-1.1.1g/crypto/s390x_arch.h.s390x-ecc	2020-05-18 12:45:40.603232072 +0200
7d1228
+++ openssl-1.1.1g/crypto/s390x_arch.h	2020-05-18 12:45:44.580266635 +0200
067bfb
@@ -26,6 +26,12 @@ void s390x_kmf(const unsigned char *in,
067bfb
                unsigned int fc, void *param);
067bfb
 void s390x_kma(const unsigned char *aad, size_t alen, const unsigned char *in,
067bfb
                size_t len, unsigned char *out, unsigned int fc, void *param);
067bfb
+int s390x_pcc(unsigned int fc, void *param);
067bfb
+int s390x_kdsa(unsigned int fc, void *param, const unsigned char *in,
067bfb
+               size_t len);
067bfb
+
067bfb
+void s390x_flip_endian32(unsigned char dst[32], const unsigned char src[32]);
067bfb
+void s390x_flip_endian64(unsigned char dst[64], const unsigned char src[64]);
067bfb
 
067bfb
 /*
067bfb
  * The field elements of OPENSSL_s390xcap_P are the 64-bit words returned by
067bfb
@@ -45,6 +51,8 @@ struct OPENSSL_s390xcap_st {
067bfb
     unsigned long long kmf[2];
067bfb
     unsigned long long prno[2];
067bfb
     unsigned long long kma[2];
067bfb
+    unsigned long long pcc[2];
067bfb
+    unsigned long long kdsa[2];
067bfb
 };
067bfb
 
067bfb
 extern struct OPENSSL_s390xcap_st OPENSSL_s390xcap_P;
067bfb
@@ -66,11 +74,14 @@ extern struct OPENSSL_s390xcap_st OPENSS
067bfb
 # define S390X_KMF		0x90
067bfb
 # define S390X_PRNO		0xa0
067bfb
 # define S390X_KMA		0xb0
067bfb
+# define S390X_PCC		0xc0
067bfb
+# define S390X_KDSA		0xd0
067bfb
 
067bfb
 /* Facility Bit Numbers */
067bfb
 # define S390X_VX		129
067bfb
 # define S390X_VXD		134
067bfb
 # define S390X_VXE		135
067bfb
+# define S390X_MSA9		155	/* message-security-assist-ext. 9 */
067bfb
 
067bfb
 /* Function Codes */
067bfb
 
067bfb
@@ -94,10 +105,32 @@ extern struct OPENSSL_s390xcap_st OPENSS
067bfb
 /* prno */
067bfb
 # define S390X_TRNG		114
067bfb
 
067bfb
+/* pcc */
067bfb
+# define S390X_SCALAR_MULTIPLY_P256	64
067bfb
+# define S390X_SCALAR_MULTIPLY_P384	65
067bfb
+# define S390X_SCALAR_MULTIPLY_P521	66
067bfb
+# define S390X_SCALAR_MULTIPLY_ED25519  72
067bfb
+# define S390X_SCALAR_MULTIPLY_ED448    73
067bfb
+# define S390X_SCALAR_MULTIPLY_X25519   80
067bfb
+# define S390X_SCALAR_MULTIPLY_X448     81
067bfb
+
067bfb
+/* kdsa */
067bfb
+# define S390X_ECDSA_VERIFY_P256	1
067bfb
+# define S390X_ECDSA_VERIFY_P384	2
067bfb
+# define S390X_ECDSA_VERIFY_P521	3
067bfb
+# define S390X_ECDSA_SIGN_P256		9
067bfb
+# define S390X_ECDSA_SIGN_P384		10
067bfb
+# define S390X_ECDSA_SIGN_P521		11
067bfb
+# define S390X_EDDSA_VERIFY_ED25519     32
067bfb
+# define S390X_EDDSA_VERIFY_ED448       36
067bfb
+# define S390X_EDDSA_SIGN_ED25519       40
067bfb
+# define S390X_EDDSA_SIGN_ED448         44
067bfb
+
067bfb
 /* Register 0 Flags */
067bfb
 # define S390X_DECRYPT		0x80
067bfb
 # define S390X_KMA_LPC		0x100
067bfb
 # define S390X_KMA_LAAD		0x200
067bfb
 # define S390X_KMA_HS		0x400
067bfb
+# define S390X_KDSA_D		0x80
067bfb
 
067bfb
 #endif
7d1228
diff -up openssl-1.1.1g/crypto/s390xcpuid.pl.s390x-ecc openssl-1.1.1g/crypto/s390xcpuid.pl
7d1228
--- openssl-1.1.1g/crypto/s390xcpuid.pl.s390x-ecc	2020-04-21 14:22:39.000000000 +0200
7d1228
+++ openssl-1.1.1g/crypto/s390xcpuid.pl	2020-05-18 12:45:44.581266644 +0200
067bfb
@@ -58,6 +58,10 @@ OPENSSL_s390x_facilities:
067bfb
 	stg	%r0,S390X_PRNO+8(%r4)
067bfb
 	stg	%r0,S390X_KMA(%r4)
067bfb
 	stg	%r0,S390X_KMA+8(%r4)
067bfb
+	stg	%r0,S390X_PCC(%r4)
067bfb
+	stg	%r0,S390X_PCC+8(%r4)
067bfb
+	stg	%r0,S390X_KDSA(%r4)
067bfb
+	stg	%r0,S390X_KDSA+8(%r4)
067bfb
 
067bfb
 	.long	0xb2b04000		# stfle	0(%r4)
067bfb
 	brc	8,.Ldone
067bfb
@@ -68,6 +72,7 @@ OPENSSL_s390x_facilities:
067bfb
 	.long	0xb2b04000		# stfle 0(%r4)
067bfb
 .Ldone:
067bfb
 	lmg	%r2,%r3,S390X_STFLE(%r4)
067bfb
+
067bfb
 	tmhl	%r2,0x4000		# check for message-security-assist
067bfb
 	jz	.Lret
067bfb
 
067bfb
@@ -91,6 +96,13 @@ OPENSSL_s390x_facilities:
067bfb
 	la	%r1,S390X_KMAC(%r4)
067bfb
 	.long	0xb91e0042		# kmac %r4,%r2
067bfb
 
067bfb
+	tmhh	%r3,0x0008		# check for message-security-assist-3
067bfb
+	jz	.Lret
067bfb
+
067bfb
+	lghi	%r0,S390X_QUERY		# query pcc capability vector
067bfb
+	la	%r1,S390X_PCC(%r4)
067bfb
+	.long	0xb92c0000		# pcc
067bfb
+
067bfb
 	tmhh	%r3,0x0004		# check for message-security-assist-4
067bfb
 	jz	.Lret
067bfb
 
067bfb
@@ -114,6 +126,7 @@ OPENSSL_s390x_facilities:
067bfb
 	.long	0xb93c0042		# prno %r4,%r2
067bfb
 
067bfb
 	lg	%r2,S390X_STFLE+16(%r4)
067bfb
+
067bfb
 	tmhl	%r2,0x2000		# check for message-security-assist-8
067bfb
 	jz	.Lret
067bfb
 
067bfb
@@ -121,6 +134,13 @@ OPENSSL_s390x_facilities:
067bfb
 	la	%r1,S390X_KMA(%r4)
067bfb
 	.long	0xb9294022		# kma %r2,%r4,%r2
067bfb
 
067bfb
+	tmhl	%r2,0x0010		# check for message-security-assist-9
067bfb
+	jz	.Lret
067bfb
+
067bfb
+	lghi	%r0,S390X_QUERY		# query kdsa capability vector
067bfb
+	la	%r1,S390X_KDSA(%r4)
067bfb
+	.long	0xb93a0002		# kdsa %r0,%r2
067bfb
+
067bfb
 .Lret:
067bfb
 	br	$ra
067bfb
 .size	OPENSSL_s390x_facilities,.-OPENSSL_s390x_facilities
067bfb
@@ -411,6 +431,113 @@ s390x_kma:
067bfb
 ___
067bfb
 }
067bfb
 
067bfb
+################
067bfb
+# int s390x_pcc(unsigned int fc, void *param)
067bfb
+{
067bfb
+my ($fc,$param) = map("%r$_",(2..3));
067bfb
+$code.=<<___;
067bfb
+.globl	s390x_pcc
067bfb
+.type	s390x_pcc,\@function
067bfb
+.align	16
067bfb
+s390x_pcc:
067bfb
+	lr	%r0,$fc
067bfb
+	l${g}r	%r1,$param
067bfb
+	lhi	%r2,0
067bfb
+
067bfb
+	.long	0xb92c0000	# pcc
067bfb
+	brc	1,.-4		# pay attention to "partial completion"
067bfb
+	brc	7,.Lpcc_err	# if CC==0 return 0, else return 1
067bfb
+.Lpcc_out:
067bfb
+	br	$ra
067bfb
+.Lpcc_err:
067bfb
+	lhi	%r2,1
067bfb
+	j	.Lpcc_out
067bfb
+.size	s390x_pcc,.-s390x_pcc
067bfb
+___
067bfb
+}
067bfb
+
067bfb
+################
067bfb
+# int s390x_kdsa(unsigned int fc, void *param,
067bfb
+#                const unsigned char *in, size_t len)
067bfb
+{
067bfb
+my ($fc,$param,$in,$len) = map("%r$_",(2..5));
067bfb
+$code.=<<___;
067bfb
+.globl	s390x_kdsa
067bfb
+.type	s390x_kdsa,\@function
067bfb
+.align	16
067bfb
+s390x_kdsa:
067bfb
+	lr	%r0,$fc
067bfb
+	l${g}r	%r1,$param
067bfb
+	lhi	%r2,0
067bfb
+
067bfb
+	.long	0xb93a0004	# kdsa %r0,$in
067bfb
+	brc	1,.-4		# pay attention to "partial completion"
067bfb
+	brc	7,.Lkdsa_err	# if CC==0 return 0, else return 1
067bfb
+.Lkdsa_out:
067bfb
+	br	$ra
067bfb
+.Lkdsa_err:
067bfb
+	lhi	%r2,1
067bfb
+	j	.Lkdsa_out
067bfb
+.size	s390x_kdsa,.-s390x_kdsa
067bfb
+___
067bfb
+}
067bfb
+
067bfb
+################
067bfb
+# void s390x_flip_endian32(unsigned char dst[32], const unsigned char src[32])
067bfb
+{
067bfb
+my ($dst,$src) = map("%r$_",(2..3));
067bfb
+$code.=<<___;
067bfb
+.globl	s390x_flip_endian32
067bfb
+.type	s390x_flip_endian32,\@function
067bfb
+.align	16
067bfb
+s390x_flip_endian32:
067bfb
+	lrvg	%r0,0(%r0,$src)
067bfb
+	lrvg	%r1,8(%r0,$src)
067bfb
+	lrvg	%r4,16(%r0,$src)
067bfb
+	lrvg	%r5,24(%r0,$src)
067bfb
+	stg	%r0,24(%r0,$dst)
067bfb
+	stg	%r1,16(%r0,$dst)
067bfb
+	stg	%r4,8(%r0,$dst)
067bfb
+	stg	%r5,0(%r0,$dst)
067bfb
+	br	$ra
067bfb
+.size	s390x_flip_endian32,.-s390x_flip_endian32
067bfb
+___
067bfb
+}
067bfb
+
067bfb
+################
067bfb
+# void s390x_flip_endian64(unsigned char dst[64], const unsigned char src[64])
067bfb
+{
067bfb
+my ($dst,$src) = map("%r$_",(2..3));
067bfb
+$code.=<<___;
067bfb
+.globl	s390x_flip_endian64
067bfb
+.type	s390x_flip_endian64,\@function
067bfb
+.align	16
067bfb
+s390x_flip_endian64:
067bfb
+	stmg	%r6,%r9,6*$SIZE_T($sp)
067bfb
+
067bfb
+	lrvg	%r0,0(%r0,$src)
067bfb
+	lrvg	%r1,8(%r0,$src)
067bfb
+	lrvg	%r4,16(%r0,$src)
067bfb
+	lrvg	%r5,24(%r0,$src)
067bfb
+	lrvg	%r6,32(%r0,$src)
067bfb
+	lrvg	%r7,40(%r0,$src)
067bfb
+	lrvg	%r8,48(%r0,$src)
067bfb
+	lrvg	%r9,56(%r0,$src)
067bfb
+	stg	%r0,56(%r0,$dst)
067bfb
+	stg	%r1,48(%r0,$dst)
067bfb
+	stg	%r4,40(%r0,$dst)
067bfb
+	stg	%r5,32(%r0,$dst)
067bfb
+	stg	%r6,24(%r0,$dst)
067bfb
+	stg	%r7,16(%r0,$dst)
067bfb
+	stg	%r8,8(%r0,$dst)
067bfb
+	stg	%r9,0(%r0,$dst)
067bfb
+
067bfb
+	lmg	%r6,%r9,6*$SIZE_T($sp)
067bfb
+	br	$ra
067bfb
+.size	s390x_flip_endian64,.-s390x_flip_endian64
067bfb
+___
067bfb
+}
067bfb
+
067bfb
 $code.=<<___;
067bfb
 .section	.init
067bfb
 	brasl	$ra,OPENSSL_cpuid_setup
7d1228
diff -up openssl-1.1.1g/crypto/siphash/siphash_pmeth.c.s390x-ecc openssl-1.1.1g/crypto/siphash/siphash_pmeth.c
7d1228
--- openssl-1.1.1g/crypto/siphash/siphash_pmeth.c.s390x-ecc	2020-04-21 14:22:39.000000000 +0200
7d1228
+++ openssl-1.1.1g/crypto/siphash/siphash_pmeth.c	2020-05-18 12:45:44.581266644 +0200
067bfb
@@ -203,3 +203,8 @@ const EVP_PKEY_METHOD siphash_pkey_meth
067bfb
     pkey_siphash_ctrl,
067bfb
     pkey_siphash_ctrl_str
067bfb
 };
067bfb
+
067bfb
+const EVP_PKEY_METHOD *siphash_pkey_method(void)
067bfb
+{
067bfb
+    return &siphash_pkey_meth;
067bfb
+}
7d1228
diff -up openssl-1.1.1g/crypto/sm2/sm2_pmeth.c.s390x-ecc openssl-1.1.1g/crypto/sm2/sm2_pmeth.c
7d1228
--- openssl-1.1.1g/crypto/sm2/sm2_pmeth.c.s390x-ecc	2020-04-21 14:22:39.000000000 +0200
7d1228
+++ openssl-1.1.1g/crypto/sm2/sm2_pmeth.c	2020-05-18 12:45:44.582266653 +0200
7d1228
@@ -327,3 +327,8 @@ const EVP_PKEY_METHOD sm2_pkey_meth = {
067bfb
 
067bfb
     pkey_sm2_digest_custom
067bfb
 };
067bfb
+
067bfb
+const EVP_PKEY_METHOD *sm2_pkey_method(void)
067bfb
+{
067bfb
+    return &sm2_pkey_meth;
067bfb
+}
7d1228
diff -up openssl-1.1.1g/include/crypto/evp.h.s390x-ecc openssl-1.1.1g/include/crypto/evp.h
7d1228
--- openssl-1.1.1g/include/crypto/evp.h.s390x-ecc	2020-05-18 12:45:40.834234079 +0200
7d1228
+++ openssl-1.1.1g/include/crypto/evp.h	2020-05-18 12:45:44.577266609 +0200
7d1228
@@ -459,3 +459,22 @@ void evp_encode_ctx_set_flags(EVP_ENCODE
7d1228
 #define EVP_ENCODE_CTX_NO_NEWLINES          1
7d1228
 /* Use the SRP base64 alphabet instead of the standard one */
7d1228
 #define EVP_ENCODE_CTX_USE_SRP_ALPHABET     2
7d1228
+
7d1228
+const EVP_PKEY_METHOD *cmac_pkey_method(void);
7d1228
+const EVP_PKEY_METHOD *dh_pkey_method(void);
7d1228
+const EVP_PKEY_METHOD *dhx_pkey_method(void);
7d1228
+const EVP_PKEY_METHOD *dsa_pkey_method(void);
7d1228
+const EVP_PKEY_METHOD *ec_pkey_method(void);
7d1228
+const EVP_PKEY_METHOD *sm2_pkey_method(void);
7d1228
+const EVP_PKEY_METHOD *ecx25519_pkey_method(void);
7d1228
+const EVP_PKEY_METHOD *ecx448_pkey_method(void);
7d1228
+const EVP_PKEY_METHOD *ed25519_pkey_method(void);
7d1228
+const EVP_PKEY_METHOD *ed448_pkey_method(void);
7d1228
+const EVP_PKEY_METHOD *hmac_pkey_method(void);
7d1228
+const EVP_PKEY_METHOD *rsa_pkey_method(void);
7d1228
+const EVP_PKEY_METHOD *rsa_pss_pkey_method(void);
7d1228
+const EVP_PKEY_METHOD *scrypt_pkey_method(void);
7d1228
+const EVP_PKEY_METHOD *tls1_prf_pkey_method(void);
7d1228
+const EVP_PKEY_METHOD *hkdf_pkey_method(void);
7d1228
+const EVP_PKEY_METHOD *poly1305_pkey_method(void);
7d1228
+const EVP_PKEY_METHOD *siphash_pkey_method(void);
7d1228
diff -up openssl-1.1.1g/include/internal/constant_time.h.s390x-ecc openssl-1.1.1g/include/internal/constant_time.h
7d1228
--- openssl-1.1.1g/include/internal/constant_time.h.s390x-ecc	2020-04-21 14:22:39.000000000 +0200
7d1228
+++ openssl-1.1.1g/include/internal/constant_time.h	2020-05-18 12:45:44.582266653 +0200
7d1228
@@ -353,6 +353,34 @@ static ossl_inline void constant_time_co
067bfb
 }
067bfb
 
067bfb
 /*
067bfb
+ * mask must be 0xFF or 0x00.
067bfb
+ * "constant time" is per len.
067bfb
+ *
067bfb
+ * if (mask) {
067bfb
+ *     unsigned char tmp[len];
067bfb
+ *
067bfb
+ *     memcpy(tmp, a, len);
067bfb
+ *     memcpy(a, b);
067bfb
+ *     memcpy(b, tmp);
067bfb
+ * }
067bfb
+ */
067bfb
+static ossl_inline void constant_time_cond_swap_buff(unsigned char mask,
067bfb
+                                                     unsigned char *a,
067bfb
+                                                     unsigned char *b,
067bfb
+                                                     size_t len)
067bfb
+{
067bfb
+    size_t i;
067bfb
+    unsigned char tmp;
067bfb
+
067bfb
+    for (i = 0; i < len; i++) {
067bfb
+        tmp = a[i] ^ b[i];
067bfb
+        tmp &= mask;
067bfb
+        a[i] ^= tmp;
067bfb
+        b[i] ^= tmp;
067bfb
+    }
067bfb
+}
067bfb
+
067bfb
+/*
067bfb
  * table is a two dimensional array of bytes. Each row has rowsize elements.
067bfb
  * Copies row number idx into out. rowsize and numrows are not considered
067bfb
  * private.
7d1228
diff -up openssl-1.1.1g/include/openssl/ecerr.h.s390x-ecc openssl-1.1.1g/include/openssl/ecerr.h
7d1228
--- openssl-1.1.1g/include/openssl/ecerr.h.s390x-ecc	2020-04-21 14:22:39.000000000 +0200
7d1228
+++ openssl-1.1.1g/include/openssl/ecerr.h	2020-05-18 12:45:44.583266662 +0200
7d1228
@@ -42,6 +42,11 @@ int ERR_load_EC_strings(void);
067bfb
 #  define EC_F_ECDSA_SIGN_SETUP                            248
067bfb
 #  define EC_F_ECDSA_SIG_NEW                               265
067bfb
 #  define EC_F_ECDSA_VERIFY                                253
067bfb
+#  define EC_F_ECDSA_SIMPLE_SIGN_SETUP                     310
067bfb
+#  define EC_F_ECDSA_SIMPLE_SIGN_SIG                       311
067bfb
+#  define EC_F_ECDSA_SIMPLE_VERIFY_SIG                     312
067bfb
+#  define EC_F_ECDSA_S390X_NISTP_SIGN_SIG                  313
067bfb
+#  define EC_F_ECDSA_S390X_NISTP_VERIFY_SIG                314
067bfb
 #  define EC_F_ECD_ITEM_VERIFY                             270
067bfb
 #  define EC_F_ECKEY_PARAM2TYPE                            223
067bfb
 #  define EC_F_ECKEY_PARAM_DECODE                          212
7d1228
@@ -185,6 +190,7 @@ int ERR_load_EC_strings(void);
067bfb
 #  define EC_F_O2I_ECPUBLICKEY                             152
067bfb
 #  define EC_F_OLD_EC_PRIV_DECODE                          222
067bfb
 #  define EC_F_OSSL_ECDH_COMPUTE_KEY                       247
067bfb
+#  define EC_F_OSSL_ECDSA_SIGN_SETUP                       300
067bfb
 #  define EC_F_OSSL_ECDSA_SIGN_SIG                         249
067bfb
 #  define EC_F_OSSL_ECDSA_VERIFY_SIG                       250
067bfb
 #  define EC_F_PKEY_ECD_CTRL                               271
7d1228
@@ -200,6 +206,12 @@ int ERR_load_EC_strings(void);
067bfb
 #  define EC_F_PKEY_EC_KEYGEN                              199
067bfb
 #  define EC_F_PKEY_EC_PARAMGEN                            219
067bfb
 #  define EC_F_PKEY_EC_SIGN                                218
067bfb
+#   define EC_F_S390X_PKEY_ECD_DIGESTSIGN25519             320
067bfb
+#   define EC_F_S390X_PKEY_ECD_DIGESTSIGN448               321
067bfb
+#   define EC_F_S390X_PKEY_ECD_KEYGEN25519                 322
067bfb
+#   define EC_F_S390X_PKEY_ECD_KEYGEN448                   323
067bfb
+#   define EC_F_S390X_PKEY_ECX_KEYGEN25519                 324
067bfb
+#   define EC_F_S390X_PKEY_ECX_KEYGEN448                   325
067bfb
 #  define EC_F_VALIDATE_ECX_DERIVE                         278
067bfb
 
067bfb
 /*
7d1228
@@ -212,6 +224,7 @@ int ERR_load_EC_strings(void);
067bfb
 #  define EC_R_CANNOT_INVERT                               165
067bfb
 #  define EC_R_COORDINATES_OUT_OF_RANGE                    146
067bfb
 #  define EC_R_CURVE_DOES_NOT_SUPPORT_ECDH                 160
067bfb
+#  define EC_R_CURVE_DOES_NOT_SUPPORT_ECDSA                170
067bfb
 #  define EC_R_CURVE_DOES_NOT_SUPPORT_SIGNING              159
067bfb
 #  define EC_R_D2I_ECPKPARAMETERS_FAILURE                  117
067bfb
 #  define EC_R_DECODE_ERROR                                142
7d1228
diff -up openssl-1.1.1g/test/recipes/30-test_evp_data/evppkey.txt.s390x-ecc openssl-1.1.1g/test/recipes/30-test_evp_data/evppkey.txt
7d1228
--- openssl-1.1.1g/test/recipes/30-test_evp_data/evppkey.txt.s390x-ecc	2020-04-21 14:22:39.000000000 +0200
7d1228
+++ openssl-1.1.1g/test/recipes/30-test_evp_data/evppkey.txt	2020-05-18 12:45:44.590266722 +0200
067bfb
@@ -814,6 +814,8 @@ PublicKeyRaw=Bob-448-PUBLIC-Raw:X448:3eb
067bfb
 
067bfb
 PrivPubKeyPair = Bob-448-Raw:Bob-448-PUBLIC-Raw
067bfb
 
067bfb
+PublicKeyRaw=Bob-448-PUBLIC-Raw-NonCanonical:X448:ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
067bfb
+
067bfb
 Derive=Alice-448
067bfb
 PeerKey=Bob-448-PUBLIC
067bfb
 SharedSecret=07fff4181ac6cc95ec1c16a94a0f74d12da232ce40a77552281d282bb60c0b56fd2464c335543936521c24403085d59a449a5037514a879d
067bfb
@@ -830,6 +832,11 @@ Derive=Bob-448-Raw
067bfb
 PeerKey=Alice-448-PUBLIC-Raw
067bfb
 SharedSecret=07fff4181ac6cc95ec1c16a94a0f74d12da232ce40a77552281d282bb60c0b56fd2464c335543936521c24403085d59a449a5037514a879d
067bfb
 
067bfb
+# Self-generated non-canonical
067bfb
+Derive=Alice-448-Raw
067bfb
+PeerKey=Bob-448-PUBLIC-Raw-NonCanonical
067bfb
+SharedSecret=66e2e682b1f8e68c809f1bb3e406bd826921d9c1a5bfbfcbab7ae72feecee63660eabd54934f3382061d17607f581a90bdac917a064959fb
067bfb
+
067bfb
 # Illegal sign/verify operations with X448 key
067bfb
 
067bfb
 Sign=Alice-448