9fde57
/* curves.c -  ECC curves regression tests
9fde57
 *	Copyright (C) 2011 Free Software Foundation, Inc.
9fde57
 *
9fde57
 * This file is part of Libgcrypt.
9fde57
 *
9fde57
 * Libgcrypt is free software; you can redistribute it and/or modify
9fde57
 * it under the terms of the GNU Lesser General Public License as
9fde57
 * published by the Free Software Foundation; either version 2.1 of
9fde57
 * the License, or (at your option) any later version.
9fde57
 *
9fde57
 * Libgcrypt is distributed in the hope that it will be useful,
9fde57
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9fde57
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
9fde57
 * GNU Lesser General Public License for more details.
9fde57
 *
9fde57
 * You should have received a copy of the GNU Lesser General Public
9fde57
 * License along with this program; if not, write to the Free Software
9fde57
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
9fde57
 */
9fde57
9fde57
#ifdef HAVE_CONFIG_H
9fde57
#include <config.h>
9fde57
#endif
9fde57
#include <stdio.h>
9fde57
#include <stdlib.h>
9fde57
#include <string.h>
9fde57
#include <stdarg.h>
9fde57
9fde57
#include "../src/gcrypt-int.h"
9fde57
9fde57
9fde57
#define PGM "curves"
9fde57
#include "t-common.h"
9fde57
9fde57
/* Number of curves defined in ../cipger/ecc.c */
9fde57
#define N_CURVES 14
9fde57
9fde57
/* A real world sample public key.  */
9fde57
static char const sample_key_1[] =
9fde57
"(public-key\n"
9fde57
" (ecdsa\n"
9fde57
"  (p #00FFFFFFFF00000001000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFF#)\n"
9fde57
"  (a #00FFFFFFFF00000001000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFC#)\n"
9fde57
"  (b #5AC635D8AA3A93E7B3EBBD55769886BC651D06B0CC53B0F63BCE3C3E27D2604B#)\n"
9fde57
"  (g #046B17D1F2E12C4247F8BCE6E563A440F277037D812DEB33A0F4A13945D898C296"
9fde57
        "4FE342E2FE1A7F9B8EE7EB4A7C0F9E162BCE33576B315ECECBB6406837BF51F5#)\n"
9fde57
"  (n #00FFFFFFFF00000000FFFFFFFFFFFFFFFFBCE6FAADA7179E84F3B9CAC2FC632551#)\n"
9fde57
"  (h #000000000000000000000000000000000000000000000000000000000000000001#)\n"
9fde57
"  (q #0442B927242237639A36CE9221B340DB1A9AB76DF2FE3E171277F6A4023DED146EE"
9fde57
      "86525E38CCECFF3FB8D152CC6334F70D23A525175C1BCBDDE6E023B2228770E#)\n"
9fde57
"  ))";
9fde57
static char const sample_key_1_curve[] = "NIST P-256";
9fde57
static unsigned int sample_key_1_nbits = 256;
9fde57
9fde57
9fde57
9fde57
static void
9fde57
list_curves (void)
9fde57
{
9fde57
  int idx;
9fde57
  const char *name;
9fde57
  unsigned int nbits;
9fde57
9fde57
  for (idx=0; (name = gcry_pk_get_curve (NULL, idx, &nbits)); idx++)
9fde57
    {
9fde57
      if (verbose)
9fde57
        printf ("%s - %u bits\n", name, nbits);
9fde57
    }
9fde57
  if (idx != N_CURVES)
9fde57
    fail ("expected %d curves but got %d\n", N_CURVES, idx);
9fde57
  if (gcry_pk_get_curve (NULL, -1, NULL))
9fde57
    fail ("curve iteration failed\n");
9fde57
}
9fde57
9fde57
9fde57
static void
9fde57
check_matching (void)
9fde57
{
9fde57
  gpg_error_t err;
9fde57
  gcry_sexp_t key;
9fde57
  const char *name;
9fde57
  unsigned int nbits;
9fde57
9fde57
  err = gcry_sexp_new (&key, sample_key_1, 0, 1);
9fde57
  if (err)
9fde57
    die ("parsing s-expression string failed: %s\n", gpg_strerror (err));
9fde57
  name = gcry_pk_get_curve (key, 0, &nbits);
9fde57
  if (!name)
9fde57
    fail ("curve name not found for sample_key_1\n");
9fde57
  else if (strcmp (name, sample_key_1_curve))
9fde57
    fail ("expected curve name %s but got %s for sample_key_1\n",
9fde57
          sample_key_1_curve, name);
9fde57
  else if (nbits != sample_key_1_nbits)
9fde57
    fail ("expected curve size %u but got %u for sample_key_1\n",
9fde57
          sample_key_1_nbits, nbits);
9fde57
9fde57
  gcry_sexp_release (key);
9fde57
9fde57
}
9fde57
9fde57
9fde57
static void
9fde57
check_get_params (void)
9fde57
{
9fde57
  gcry_sexp_t param;
9fde57
  const char *name;
9fde57
9fde57
  param = gcry_pk_get_param (GCRY_PK_ECDSA, sample_key_1_curve);
9fde57
  if (!param)
9fde57
    fail ("error gerring parameters for `%s'\n", sample_key_1_curve);
9fde57
9fde57
  name = gcry_pk_get_curve (param, 0, NULL);
9fde57
  if (!name)
9fde57
    fail ("get_param: curve name not found for sample_key_1\n");
9fde57
  else if (strcmp (name, sample_key_1_curve))
9fde57
    fail ("get_param: expected curve name %s but got %s for sample_key_1\n",
9fde57
          sample_key_1_curve, name);
9fde57
9fde57
  gcry_sexp_release (param);
9fde57
9fde57
}
9fde57
9fde57
9fde57
int
9fde57
main (int argc, char **argv)
9fde57
{
9fde57
  if (argc > 1 && !strcmp (argv[1], "--verbose"))
9fde57
    verbose = 1;
9fde57
  else if (argc > 1 && !strcmp (argv[1], "--debug"))
9fde57
    verbose = debug = 1;
9fde57
9fde57
  if (!gcry_check_version (GCRYPT_VERSION))
9fde57
    die ("version mismatch\n");
9fde57
9fde57
  xgcry_control (GCRYCTL_DISABLE_SECMEM, 0);
9fde57
  xgcry_control (GCRYCTL_INITIALIZATION_FINISHED, 0);
9fde57
  if (debug)
9fde57
    xgcry_control (GCRYCTL_SET_DEBUG_FLAGS, 1u, 0);
9fde57
  list_curves ();
9fde57
  check_matching ();
9fde57
  check_get_params ();
9fde57
9fde57
  return error_count ? 1 : 0;
9fde57
}