]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
nettle/gost: add support for GOST VKO algorithm
authorDmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Thu, 14 Jun 2018 12:39:39 +0000 (15:39 +0300)
committerDmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Thu, 7 Nov 2019 15:41:28 +0000 (18:41 +0300)
GOST VKO is a variant of ECDHE algorithm.

Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
lib/nettle/Makefile.am
lib/nettle/gost/gostdsa-vko.c [new file with mode: 0644]
lib/nettle/gost/gostdsa.h

index b194c82f8920d36971bc3fe9b4a2cb14a58edb70..7260e39bce62bf858f98fff27a85bb9b4d427de7 100644 (file)
@@ -92,6 +92,6 @@ libcrypto_la_SOURCES += \
        gost/ecc-gost512a.c gost/ecc-gost512a-32.h gost/ecc-gost512a-64.h \
        gost/ecc-internal.h gost/gmp-glue.h \
        gost/ecc-gostdsa-sign.c gost/ecc-gostdsa-verify.c \
-       gost/gostdsa-mask.c gost/gostdsa-sign.c gost/gostdsa-verify.c \
+       gost/gostdsa-mask.c gost/gostdsa-sign.c gost/gostdsa-verify.c gost/gostdsa-vko.c \
        gost/gostdsa.h gost/ecc-gost-curve.h gost/ecc-gost-hash.c
 endif
diff --git a/lib/nettle/gost/gostdsa-vko.c b/lib/nettle/gost/gostdsa-vko.c
new file mode 100644 (file)
index 0000000..89dff1c
--- /dev/null
@@ -0,0 +1,78 @@
+/* gostdsa-vko.c
+
+   Copyright (C) 2016 Dmitry Eremin-Solenikov
+
+   This file is part of GNU Nettle.
+
+   GNU Nettle is free software: you can redistribute it and/or
+   modify it under the terms of either:
+
+     * the GNU Lesser General Public License as published by the Free
+       Software Foundation; either version 3 of the License, or (at your
+       option) any later version.
+
+   or
+
+     * the GNU General Public License as published by the Free
+       Software Foundation; either version 2 of the License, or (at your
+       option) any later version.
+
+   or both in parallel, as here.
+
+   GNU Nettle is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   General Public License for more details.
+
+   You should have received copies of the GNU General Public License and
+   the GNU Lesser General Public License along with this program.  If
+   not, see http://www.gnu.org/licenses/.
+*/
+
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+#include <gnutls_int.h>
+
+#include <stdlib.h>
+
+#include "ecc-internal.h"
+#include "gostdsa.h"
+
+int
+gostdsa_vko(const struct ecc_scalar *key,
+           const struct ecc_point *pub,
+           size_t ukm_length, const uint8_t *ukm,
+           size_t out_length, uint8_t *out)
+{
+  const struct ecc_curve *ecc = key->ecc;
+  unsigned bsize = (ecc_bit_size(ecc) + 7) / 8;
+  mp_size_t size = ecc->p.size;
+  mp_size_t itch = 4*size + ecc->mul_itch;
+  mp_limb_t *scratch;
+
+  if (itch < 5*size + ecc->h_to_a_itch)
+      itch = 5*size + ecc->h_to_a_itch;
+
+  if (pub->ecc != ecc)
+      return 0;
+
+  if (out_length < 2 * bsize) {
+      return 0;
+  }
+
+  scratch = gmp_alloc_limbs (itch);
+
+  mpn_set_base256_le (scratch, size, ukm, ukm_length);
+  if (mpn_zero_p (scratch, size))
+    mpn_add_1 (scratch, scratch, size, 1);
+  ecc_modq_mul (ecc, scratch + 3*size, key->p, scratch);
+  ecc->mul (ecc, scratch, scratch + 3*size, pub->p, scratch + 4*size);
+  ecc->h_to_a (ecc, 0, scratch + 3*size, scratch, scratch + 5*size);
+  mpn_get_base256_le (out, bsize, scratch + 3*size, size);
+  mpn_get_base256_le (out+bsize, bsize, scratch + 4*size, size);
+  gmp_free_limbs (scratch, itch);
+
+  return 2 * bsize;
+}
index 9b0f51752985ce22aae74332663ec4f9f25b4777..9e0375f2ce365d8372234d0e7714eb1073b54d88 100644 (file)
@@ -47,6 +47,7 @@ extern "C" {
 #define gostdsa_sign _gnutls_gostdsa_sign
 #define gostdsa_verify _gnutls_gostdsa_verify
 #define gostdsa_unmask_key _gnutls_gostdsa_unmask_key
+#define gostdsa_vko _gnutls_gostdsa_vko
 #define ecc_gostdsa_sign _gnutls_ecc_gostdsa_sign
 #define ecc_gostdsa_sign_itch _gnutls_ecc_gostdsa_sign_itch
 #define ecc_gostdsa_verify _gnutls_ecc_gostdsa_verify
@@ -75,6 +76,12 @@ int
 gostdsa_unmask_key (const struct ecc_curve *ecc,
                    mpz_t key);
 
+int
+gostdsa_vko(const struct ecc_scalar *key,
+           const struct ecc_point *pub,
+           size_t ukm_length, const uint8_t *ukm,
+           size_t out_length, uint8_t *out);
+
 /* Low-level GOSTDSA functions. */
 mp_size_t
 ecc_gostdsa_sign_itch (const struct ecc_curve *ecc);