/* * Copyright (C) 2021 - This file is part of libecc project * * Authors: * Ryad BENADJILA * Arnaud EBALARD * * This software is licensed under a dual BSD and GPL v2 license. * See LICENSE file at the root folder of the project. */ #ifndef __SDSA_H__ #define __SDSA_H__ /* * NOTE: although we only need libarith for SDSA as we * manipulate a ring of integers, we include libsig for * the hash algorithms. */ #include /* The hash algorithms wrapper */ #include "../../hash/hash.h" /* The DSA include file as we reuse DSA primitives internally */ #include "../dsa/dsa.h" /* We define hereafter the types and functions for SDSA. */ /* SDSA public key, composed of: * p the SDSA prime modulus * q the SDSA prime order (prime divisor of (p-1)) * g the SDSA generator * y the public key = g^x (p) * * NOTE: the SDSA (Schnorr DSA) public key is mapped to a DSA public key * as the parameters are the same. */ typedef dsa_pub_key sdsa_pub_key; /* SDSA private key, composed of: * p the SDSA prime modulus * q the SDSA prime order (prime divisor of (p-1)) * g the SDSA generator * x the secret key * * NOTE: the SDSA (Schnorr DSA) private key is mapped to a DSA private key * as the parameters are the same. */ typedef dsa_priv_key sdsa_priv_key; ATTRIBUTE_WARN_UNUSED_RET int sdsa_import_priv_key(sdsa_priv_key *priv, const u8 *p, u16 plen, const u8 *q, u16 qlen, const u8 *g, u16 glen, const u8 *x, u16 xlen); ATTRIBUTE_WARN_UNUSED_RET int sdsa_import_pub_key(sdsa_pub_key *pub, const u8 *p, u16 plen, const u8 *q, u16 qlen, const u8 *g, u16 glen, const u8 *y, u16 ylen); ATTRIBUTE_WARN_UNUSED_RET int sdsa_compute_pub_from_priv(sdsa_pub_key *pub, const sdsa_priv_key *priv); ATTRIBUTE_WARN_UNUSED_RET int sdsa_sign(const sdsa_priv_key *priv, const u8 *msg, u32 msglen, const u8 *nonce, u16 noncelen, u8 *sig, u16 siglen, gen_hash_alg_type sdsa_hash); ATTRIBUTE_WARN_UNUSED_RET int sdsa_verify(const sdsa_pub_key *pub, const u8 *msg, u32 msglen, const u8 *sig, u16 siglen, gen_hash_alg_type sdsa_hash); #endif /* __SDSA_H__ */