2017-11-15 15:27:21 +00:00
|
|
|
/**
|
|
|
|
* @file decaf/point_448.h
|
|
|
|
* @author Mike Hamburg
|
|
|
|
*
|
|
|
|
* @copyright
|
|
|
|
* Copyright (c) 2015-2016 Cryptography Research, Inc. \n
|
|
|
|
* Released under the MIT License. See LICENSE.txt for license information.
|
|
|
|
*
|
|
|
|
* @brief A group of prime order p, based on Ed448-Goldilocks.
|
|
|
|
*
|
|
|
|
* @warning This file was automatically generated in Python.
|
|
|
|
* Please do not edit it.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __DECAF_POINT_448_H__
|
|
|
|
#define __DECAF_POINT_448_H__ 1
|
|
|
|
|
2017-11-15 16:24:32 +00:00
|
|
|
#include "curve448utils.h"
|
2017-11-16 16:20:34 +00:00
|
|
|
#include "field.h"
|
2017-11-15 15:27:21 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/** @cond internal */
|
|
|
|
#define DECAF_448_SCALAR_LIMBS ((446-1)/DECAF_WORD_BITS+1)
|
|
|
|
/** @endcond */
|
|
|
|
|
|
|
|
/** The number of bits in a scalar */
|
|
|
|
#define DECAF_448_SCALAR_BITS 446
|
|
|
|
|
|
|
|
/** Number of bytes in a serialized point. */
|
|
|
|
#define DECAF_448_SER_BYTES 56
|
|
|
|
|
|
|
|
/** Number of bytes in an elligated point. For now set the same as SER_BYTES
|
|
|
|
* but could be different for other curves.
|
|
|
|
*/
|
|
|
|
#define DECAF_448_HASH_BYTES 56
|
|
|
|
|
|
|
|
/** Number of bytes in a serialized scalar. */
|
|
|
|
#define DECAF_448_SCALAR_BYTES 56
|
|
|
|
|
|
|
|
/** Number of bits in the "which" field of an elligator inverse */
|
|
|
|
#define DECAF_448_INVERT_ELLIGATOR_WHICH_BITS 3
|
|
|
|
|
|
|
|
/** The cofactor the curve would have, if we hadn't removed it */
|
|
|
|
#define DECAF_448_REMOVED_COFACTOR 4
|
|
|
|
|
|
|
|
/** X448 encoding ratio. */
|
|
|
|
#define DECAF_X448_ENCODE_RATIO 2
|
|
|
|
|
|
|
|
/** Number of bytes in an x448 public key */
|
|
|
|
#define DECAF_X448_PUBLIC_BYTES 56
|
|
|
|
|
|
|
|
/** Number of bytes in an x448 private key */
|
|
|
|
#define DECAF_X448_PRIVATE_BYTES 56
|
|
|
|
|
|
|
|
/** Twisted Edwards extended homogeneous coordinates */
|
2017-11-16 16:27:48 +00:00
|
|
|
typedef struct curve448_point_s {
|
2017-11-15 15:27:21 +00:00
|
|
|
/** @cond internal */
|
|
|
|
gf_448_t x,y,z,t;
|
|
|
|
/** @endcond */
|
2017-11-16 16:27:48 +00:00
|
|
|
} curve448_point_t[1];
|
2017-11-15 15:27:21 +00:00
|
|
|
|
|
|
|
/** Precomputed table based on a point. Can be trivial implementation. */
|
2017-11-16 16:27:48 +00:00
|
|
|
struct curve448_precomputed_s;
|
2017-11-15 15:27:21 +00:00
|
|
|
|
|
|
|
/** Precomputed table based on a point. Can be trivial implementation. */
|
2017-11-16 16:27:48 +00:00
|
|
|
typedef struct curve448_precomputed_s curve448_precomputed_s;
|
2017-11-15 15:27:21 +00:00
|
|
|
|
|
|
|
/** Scalar is stored packed, because we don't need the speed. */
|
2017-11-16 16:27:48 +00:00
|
|
|
typedef struct curve448_scalar_s {
|
2017-11-15 15:27:21 +00:00
|
|
|
/** @cond internal */
|
|
|
|
decaf_word_t limb[DECAF_448_SCALAR_LIMBS];
|
|
|
|
/** @endcond */
|
2017-11-16 16:27:48 +00:00
|
|
|
} curve448_scalar_t[1];
|
2017-11-15 15:27:21 +00:00
|
|
|
|
|
|
|
/** A scalar equal to 1. */
|
2017-11-16 16:27:48 +00:00
|
|
|
extern const curve448_scalar_t curve448_scalar_one DECAF_API_VIS;
|
2017-11-15 15:27:21 +00:00
|
|
|
|
|
|
|
/** A scalar equal to 0. */
|
2017-11-16 16:27:48 +00:00
|
|
|
extern const curve448_scalar_t curve448_scalar_zero DECAF_API_VIS;
|
2017-11-15 15:27:21 +00:00
|
|
|
|
|
|
|
/** The identity point on the curve. */
|
2017-11-16 16:27:48 +00:00
|
|
|
extern const curve448_point_t curve448_point_identity DECAF_API_VIS;
|
2017-11-15 15:27:21 +00:00
|
|
|
|
|
|
|
/** An arbitrarily chosen base point on the curve. */
|
2017-11-16 16:27:48 +00:00
|
|
|
extern const curve448_point_t curve448_point_base DECAF_API_VIS;
|
2017-11-15 15:27:21 +00:00
|
|
|
|
|
|
|
/** Precomputed table for the base point on the curve. */
|
2017-11-16 16:27:48 +00:00
|
|
|
extern const struct curve448_precomputed_s *curve448_precomputed_base DECAF_API_VIS;
|
2017-11-15 15:27:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Read a scalar from wire format or from bytes.
|
|
|
|
*
|
|
|
|
* @param [in] ser Serialized form of a scalar.
|
|
|
|
* @param [out] out Deserialized form.
|
|
|
|
*
|
|
|
|
* @retval DECAF_SUCCESS The scalar was correctly encoded.
|
|
|
|
* @retval DECAF_FAILURE The scalar was greater than the modulus,
|
|
|
|
* and has been reduced modulo that modulus.
|
|
|
|
*/
|
2017-11-16 16:27:48 +00:00
|
|
|
decaf_error_t curve448_scalar_decode (
|
|
|
|
curve448_scalar_t out,
|
2017-11-15 15:27:21 +00:00
|
|
|
const unsigned char ser[DECAF_448_SCALAR_BYTES]
|
|
|
|
) DECAF_API_VIS DECAF_WARN_UNUSED DECAF_NONNULL DECAF_NOINLINE;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Read a scalar from wire format or from bytes. Reduces mod
|
|
|
|
* scalar prime.
|
|
|
|
*
|
|
|
|
* @param [in] ser Serialized form of a scalar.
|
|
|
|
* @param [in] ser_len Length of serialized form.
|
|
|
|
* @param [out] out Deserialized form.
|
|
|
|
*/
|
2017-11-16 16:27:48 +00:00
|
|
|
void curve448_scalar_decode_long (
|
|
|
|
curve448_scalar_t out,
|
2017-11-15 15:27:21 +00:00
|
|
|
const unsigned char *ser,
|
|
|
|
size_t ser_len
|
|
|
|
) DECAF_API_VIS DECAF_NONNULL DECAF_NOINLINE;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Serialize a scalar to wire format.
|
|
|
|
*
|
|
|
|
* @param [out] ser Serialized form of a scalar.
|
|
|
|
* @param [in] s Deserialized scalar.
|
|
|
|
*/
|
2017-11-16 16:27:48 +00:00
|
|
|
void curve448_scalar_encode (
|
2017-11-15 15:27:21 +00:00
|
|
|
unsigned char ser[DECAF_448_SCALAR_BYTES],
|
2017-11-16 16:27:48 +00:00
|
|
|
const curve448_scalar_t s
|
2017-11-15 15:27:21 +00:00
|
|
|
) DECAF_API_VIS DECAF_NONNULL DECAF_NOINLINE DECAF_NOINLINE;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Add two scalars. The scalars may use the same memory.
|
|
|
|
* @param [in] a One scalar.
|
|
|
|
* @param [in] b Another scalar.
|
|
|
|
* @param [out] out a+b.
|
|
|
|
*/
|
2017-11-16 16:27:48 +00:00
|
|
|
void curve448_scalar_add (
|
|
|
|
curve448_scalar_t out,
|
|
|
|
const curve448_scalar_t a,
|
|
|
|
const curve448_scalar_t b
|
2017-11-15 15:27:21 +00:00
|
|
|
) DECAF_API_VIS DECAF_NONNULL DECAF_NOINLINE;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Compare two scalars.
|
|
|
|
* @param [in] a One scalar.
|
|
|
|
* @param [in] b Another scalar.
|
|
|
|
* @retval DECAF_TRUE The scalars are equal.
|
|
|
|
* @retval DECAF_FALSE The scalars are not equal.
|
|
|
|
*/
|
2017-11-16 16:27:48 +00:00
|
|
|
decaf_bool_t curve448_scalar_eq (
|
|
|
|
const curve448_scalar_t a,
|
|
|
|
const curve448_scalar_t b
|
2017-11-15 15:27:21 +00:00
|
|
|
) DECAF_API_VIS DECAF_WARN_UNUSED DECAF_NONNULL DECAF_NOINLINE;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Subtract two scalars. The scalars may use the same memory.
|
|
|
|
* @param [in] a One scalar.
|
|
|
|
* @param [in] b Another scalar.
|
|
|
|
* @param [out] out a-b.
|
|
|
|
*/
|
2017-11-16 16:27:48 +00:00
|
|
|
void curve448_scalar_sub (
|
|
|
|
curve448_scalar_t out,
|
|
|
|
const curve448_scalar_t a,
|
|
|
|
const curve448_scalar_t b
|
2017-11-15 15:27:21 +00:00
|
|
|
) DECAF_API_VIS DECAF_NONNULL DECAF_NOINLINE;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Multiply two scalars. The scalars may use the same memory.
|
|
|
|
* @param [in] a One scalar.
|
|
|
|
* @param [in] b Another scalar.
|
|
|
|
* @param [out] out a*b.
|
|
|
|
*/
|
2017-11-16 16:27:48 +00:00
|
|
|
void curve448_scalar_mul (
|
|
|
|
curve448_scalar_t out,
|
|
|
|
const curve448_scalar_t a,
|
|
|
|
const curve448_scalar_t b
|
2017-11-15 15:27:21 +00:00
|
|
|
) DECAF_API_VIS DECAF_NONNULL DECAF_NOINLINE;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Halve a scalar. The scalars may use the same memory.
|
|
|
|
* @param [in] a A scalar.
|
|
|
|
* @param [out] out a/2.
|
|
|
|
*/
|
2017-11-16 16:27:48 +00:00
|
|
|
void curve448_scalar_halve (
|
|
|
|
curve448_scalar_t out,
|
|
|
|
const curve448_scalar_t a
|
2017-11-15 15:27:21 +00:00
|
|
|
) DECAF_API_VIS DECAF_NONNULL DECAF_NOINLINE;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Invert a scalar. When passed zero, return 0. The input and output may alias.
|
|
|
|
* @param [in] a A scalar.
|
|
|
|
* @param [out] out 1/a.
|
|
|
|
* @return DECAF_SUCCESS The input is nonzero.
|
|
|
|
*/
|
2017-11-16 16:27:48 +00:00
|
|
|
decaf_error_t curve448_scalar_invert (
|
|
|
|
curve448_scalar_t out,
|
|
|
|
const curve448_scalar_t a
|
2017-11-15 15:27:21 +00:00
|
|
|
) DECAF_API_VIS DECAF_WARN_UNUSED DECAF_NONNULL DECAF_NOINLINE;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Copy a scalar. The scalars may use the same memory, in which
|
|
|
|
* case this function does nothing.
|
|
|
|
* @param [in] a A scalar.
|
|
|
|
* @param [out] out Will become a copy of a.
|
|
|
|
*/
|
2017-11-16 16:27:48 +00:00
|
|
|
static inline void DECAF_NONNULL curve448_scalar_copy (
|
|
|
|
curve448_scalar_t out,
|
|
|
|
const curve448_scalar_t a
|
2017-11-15 15:27:21 +00:00
|
|
|
) {
|
|
|
|
*out = *a;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Set a scalar to an unsigned 64-bit integer.
|
|
|
|
* @param [in] a An integer.
|
|
|
|
* @param [out] out Will become equal to a.
|
|
|
|
*/
|
2017-11-16 16:27:48 +00:00
|
|
|
void curve448_scalar_set_unsigned (
|
|
|
|
curve448_scalar_t out,
|
2017-11-15 15:27:21 +00:00
|
|
|
uint64_t a
|
|
|
|
) DECAF_API_VIS DECAF_NONNULL;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Copy a point. The input and output may alias,
|
|
|
|
* in which case this function does nothing.
|
|
|
|
*
|
|
|
|
* @param [out] a A copy of the point.
|
|
|
|
* @param [in] b Any point.
|
|
|
|
*/
|
2017-11-16 16:27:48 +00:00
|
|
|
static inline void DECAF_NONNULL curve448_point_copy (
|
|
|
|
curve448_point_t a,
|
|
|
|
const curve448_point_t b
|
2017-11-15 15:27:21 +00:00
|
|
|
) {
|
|
|
|
*a=*b;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Test whether two points are equal. If yes, return
|
|
|
|
* DECAF_TRUE, else return DECAF_FALSE.
|
|
|
|
*
|
|
|
|
* @param [in] a A point.
|
|
|
|
* @param [in] b Another point.
|
|
|
|
* @retval DECAF_TRUE The points are equal.
|
|
|
|
* @retval DECAF_FALSE The points are not equal.
|
|
|
|
*/
|
2017-11-16 16:27:48 +00:00
|
|
|
decaf_bool_t curve448_point_eq (
|
|
|
|
const curve448_point_t a,
|
|
|
|
const curve448_point_t b
|
2017-11-15 15:27:21 +00:00
|
|
|
) DECAF_API_VIS DECAF_WARN_UNUSED DECAF_NONNULL DECAF_NOINLINE;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Double a point. Equivalent to
|
2017-11-16 16:27:48 +00:00
|
|
|
* curve448_point_add(two_a,a,a), but potentially faster.
|
2017-11-15 15:27:21 +00:00
|
|
|
*
|
|
|
|
* @param [out] two_a The sum a+a.
|
|
|
|
* @param [in] a A point.
|
|
|
|
*/
|
2017-11-16 16:27:48 +00:00
|
|
|
void curve448_point_double (
|
|
|
|
curve448_point_t two_a,
|
|
|
|
const curve448_point_t a
|
2017-11-15 15:27:21 +00:00
|
|
|
) DECAF_API_VIS DECAF_NONNULL;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief RFC 7748 Diffie-Hellman scalarmul. This function uses a different
|
|
|
|
* (non-Decaf) encoding.
|
|
|
|
*
|
|
|
|
* @param [out] scaled The scaled point base*scalar
|
|
|
|
* @param [in] base The point to be scaled.
|
|
|
|
* @param [in] scalar The scalar to multiply by.
|
|
|
|
*
|
|
|
|
* @retval DECAF_SUCCESS The scalarmul succeeded.
|
|
|
|
* @retval DECAF_FAILURE The scalarmul didn't succeed, because the base
|
|
|
|
* point is in a small subgroup.
|
|
|
|
*/
|
|
|
|
decaf_error_t decaf_x448 (
|
|
|
|
uint8_t out[DECAF_X448_PUBLIC_BYTES],
|
|
|
|
const uint8_t base[DECAF_X448_PUBLIC_BYTES],
|
|
|
|
const uint8_t scalar[DECAF_X448_PRIVATE_BYTES]
|
|
|
|
) DECAF_API_VIS DECAF_NONNULL DECAF_WARN_UNUSED DECAF_NOINLINE;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Multiply a point by DECAF_X448_ENCODE_RATIO,
|
|
|
|
* then encode it like RFC 7748.
|
|
|
|
*
|
|
|
|
* This function is mainly used internally, but is exported in case
|
|
|
|
* it will be useful.
|
|
|
|
*
|
|
|
|
* The ratio is necessary because the internal representation doesn't
|
|
|
|
* track the cofactor information, so on output we must clear the cofactor.
|
|
|
|
* This would multiply by the cofactor, but in fact internally libdecaf's
|
|
|
|
* points are always even, so it multiplies by half the cofactor instead.
|
|
|
|
*
|
|
|
|
* As it happens, this aligns with the base point definitions; that is,
|
|
|
|
* if you pass the Decaf/Ristretto base point to this function, the result
|
|
|
|
* will be DECAF_X448_ENCODE_RATIO times the X448
|
|
|
|
* base point.
|
|
|
|
*
|
|
|
|
* @param [out] out The scaled and encoded point.
|
|
|
|
* @param [in] p The point to be scaled and encoded.
|
|
|
|
*/
|
2017-11-16 16:27:48 +00:00
|
|
|
void curve448_point_mul_by_ratio_and_encode_like_x448 (
|
2017-11-15 15:27:21 +00:00
|
|
|
uint8_t out[DECAF_X448_PUBLIC_BYTES],
|
2017-11-16 16:27:48 +00:00
|
|
|
const curve448_point_t p
|
2017-11-15 15:27:21 +00:00
|
|
|
) DECAF_API_VIS DECAF_NONNULL;
|
|
|
|
|
|
|
|
/** The base point for X448 Diffie-Hellman */
|
|
|
|
extern const uint8_t decaf_x448_base_point[DECAF_X448_PUBLIC_BYTES] DECAF_API_VIS;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief RFC 7748 Diffie-Hellman base point scalarmul. This function uses
|
|
|
|
* a different (non-Decaf) encoding.
|
|
|
|
*
|
|
|
|
* Does exactly the same thing as decaf_x448_generate_key,
|
|
|
|
* but has a better name.
|
|
|
|
*
|
|
|
|
* @param [out] scaled The scaled point base*scalar
|
|
|
|
* @param [in] scalar The scalar to multiply by.
|
|
|
|
*/
|
|
|
|
void decaf_x448_derive_public_key (
|
|
|
|
uint8_t out[DECAF_X448_PUBLIC_BYTES],
|
|
|
|
const uint8_t scalar[DECAF_X448_PRIVATE_BYTES]
|
|
|
|
) DECAF_API_VIS DECAF_NONNULL DECAF_NOINLINE;
|
|
|
|
|
2017-11-16 16:27:48 +00:00
|
|
|
/* FUTURE: uint8_t curve448_encode_like_curve448) */
|
2017-11-15 15:27:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Precompute a table for fast scalar multiplication.
|
|
|
|
* Some implementations do not include precomputed points; for
|
|
|
|
* those implementations, this implementation simply copies the
|
|
|
|
* point.
|
|
|
|
*
|
|
|
|
* @param [out] a A precomputed table of multiples of the point.
|
|
|
|
* @param [in] b Any point.
|
|
|
|
*/
|
2017-11-16 16:27:48 +00:00
|
|
|
void curve448_precompute (
|
|
|
|
curve448_precomputed_s *a,
|
|
|
|
const curve448_point_t b
|
2017-11-15 15:27:21 +00:00
|
|
|
) DECAF_API_VIS DECAF_NONNULL DECAF_NOINLINE;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Multiply a precomputed base point by a scalar:
|
|
|
|
* scaled = scalar*base.
|
|
|
|
* Some implementations do not include precomputed points; for
|
|
|
|
* those implementations, this function is the same as
|
2017-11-16 16:27:48 +00:00
|
|
|
* curve448_point_scalarmul
|
2017-11-15 15:27:21 +00:00
|
|
|
*
|
|
|
|
* @param [out] scaled The scaled point base*scalar
|
|
|
|
* @param [in] base The point to be scaled.
|
|
|
|
* @param [in] scalar The scalar to multiply by.
|
|
|
|
*/
|
2017-11-16 16:27:48 +00:00
|
|
|
void curve448_precomputed_scalarmul (
|
|
|
|
curve448_point_t scaled,
|
|
|
|
const curve448_precomputed_s *base,
|
|
|
|
const curve448_scalar_t scalar
|
2017-11-15 15:27:21 +00:00
|
|
|
) DECAF_API_VIS DECAF_NONNULL DECAF_NOINLINE;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Multiply two base points by two scalars:
|
2017-11-16 16:27:48 +00:00
|
|
|
* scaled = scalar1*curve448_point_base + scalar2*base2.
|
2017-11-15 15:27:21 +00:00
|
|
|
*
|
2017-11-16 16:27:48 +00:00
|
|
|
* Otherwise equivalent to curve448_point_double_scalarmul, but may be
|
2017-11-15 15:27:21 +00:00
|
|
|
* faster at the expense of being variable time.
|
|
|
|
*
|
|
|
|
* @param [out] combo The linear combination scalar1*base + scalar2*base2.
|
|
|
|
* @param [in] scalar1 A first scalar to multiply by.
|
|
|
|
* @param [in] base2 A second point to be scaled.
|
|
|
|
* @param [in] scalar2 A second scalar to multiply by.
|
|
|
|
*
|
|
|
|
* @warning: This function takes variable time, and may leak the scalars
|
|
|
|
* used. It is designed for signature verification.
|
|
|
|
*/
|
2017-11-16 16:27:48 +00:00
|
|
|
void curve448_base_double_scalarmul_non_secret (
|
|
|
|
curve448_point_t combo,
|
|
|
|
const curve448_scalar_t scalar1,
|
|
|
|
const curve448_point_t base2,
|
|
|
|
const curve448_scalar_t scalar2
|
2017-11-15 15:27:21 +00:00
|
|
|
) DECAF_API_VIS DECAF_NONNULL DECAF_NOINLINE;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Constant-time decision between two scalars. If pick_b
|
|
|
|
* is zero, out = a; else out = b.
|
|
|
|
*
|
|
|
|
* @param [out] out The output. It may be the same as either input.
|
|
|
|
* @param [in] a Any scalar.
|
|
|
|
* @param [in] b Any scalar.
|
|
|
|
* @param [in] pick_b If nonzero, choose scalar b.
|
|
|
|
*/
|
2017-11-16 16:27:48 +00:00
|
|
|
void curve448_scalar_cond_sel (
|
|
|
|
curve448_scalar_t out,
|
|
|
|
const curve448_scalar_t a,
|
|
|
|
const curve448_scalar_t b,
|
2017-11-15 15:27:21 +00:00
|
|
|
decaf_word_t pick_b
|
|
|
|
) DECAF_API_VIS DECAF_NONNULL DECAF_NOINLINE;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Test that a point is valid, for debugging purposes.
|
|
|
|
*
|
|
|
|
* @param [in] to_test The point to test.
|
|
|
|
* @retval DECAF_TRUE The point is valid.
|
|
|
|
* @retval DECAF_FALSE The point is invalid.
|
|
|
|
*/
|
2017-11-16 16:27:48 +00:00
|
|
|
decaf_bool_t curve448_point_valid (
|
|
|
|
const curve448_point_t to_test
|
2017-11-15 15:27:21 +00:00
|
|
|
) DECAF_API_VIS DECAF_WARN_UNUSED DECAF_NONNULL DECAF_NOINLINE;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Almost-Elligator-like hash to curve.
|
|
|
|
*
|
|
|
|
* Call this function with the output of a hash to make a hash to the curve.
|
|
|
|
*
|
2017-11-16 16:27:48 +00:00
|
|
|
* This function runs Elligator2 on the curve448 Jacobi quartic model. It then
|
2017-11-15 15:27:21 +00:00
|
|
|
* uses the isogeny to put the result in twisted Edwards form. As a result,
|
|
|
|
* it is safe (cannot produce points of order 4), and would be compatible with
|
|
|
|
* hypothetical other implementations of Decaf using a Montgomery or untwisted
|
|
|
|
* Edwards model.
|
|
|
|
*
|
|
|
|
* Unlike Elligator, this function may be up to 4:1 on [0,(p-1)/2]:
|
|
|
|
* A factor of 2 due to the isogeny.
|
|
|
|
* A factor of 2 because we quotient out the 2-torsion.
|
|
|
|
*
|
|
|
|
* This makes it about 8:1 overall, or 16:1 overall on curves with cofactor 8.
|
|
|
|
*
|
|
|
|
* Negating the input (mod q) results in the same point. Inverting the input
|
|
|
|
* (mod q) results in the negative point. This is the same as Elligator.
|
|
|
|
*
|
|
|
|
* This function isn't quite indifferentiable from a random oracle.
|
|
|
|
* However, it is suitable for many protocols, including SPEKE and SPAKE2 EE.
|
|
|
|
* Furthermore, calling it twice with independent seeds and adding the results
|
|
|
|
* is indifferentiable from a random oracle.
|
|
|
|
*
|
|
|
|
* @param [in] hashed_data Output of some hash function.
|
|
|
|
* @param [out] pt The data hashed to the curve.
|
|
|
|
*/
|
|
|
|
void
|
2017-11-16 16:27:48 +00:00
|
|
|
curve448_point_from_hash_nonuniform (
|
|
|
|
curve448_point_t pt,
|
2017-11-15 15:27:21 +00:00
|
|
|
const unsigned char hashed_data[DECAF_448_HASH_BYTES]
|
|
|
|
) DECAF_API_VIS DECAF_NONNULL DECAF_NOINLINE;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Indifferentiable hash function encoding to curve.
|
|
|
|
*
|
2017-11-16 16:27:48 +00:00
|
|
|
* Equivalent to calling curve448_point_from_hash_nonuniform twice and adding.
|
2017-11-15 15:27:21 +00:00
|
|
|
*
|
|
|
|
* @param [in] hashed_data Output of some hash function.
|
|
|
|
* @param [out] pt The data hashed to the curve.
|
|
|
|
*/
|
2017-11-16 16:27:48 +00:00
|
|
|
void curve448_point_from_hash_uniform (
|
|
|
|
curve448_point_t pt,
|
2017-11-15 15:27:21 +00:00
|
|
|
const unsigned char hashed_data[2*DECAF_448_HASH_BYTES]
|
|
|
|
) DECAF_API_VIS DECAF_NONNULL DECAF_NOINLINE;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Inverse of elligator-like hash to curve.
|
|
|
|
*
|
|
|
|
* This function writes to the buffer, to make it so that
|
2017-11-16 16:27:48 +00:00
|
|
|
* curve448_point_from_hash_nonuniform(buffer) = pt if
|
2017-11-15 15:27:21 +00:00
|
|
|
* possible. Since there may be multiple preimages, the
|
|
|
|
* "which" parameter chooses between them. To ensure uniform
|
|
|
|
* inverse sampling, this function succeeds or fails
|
|
|
|
* independently for different "which" values.
|
|
|
|
*
|
|
|
|
* This function isn't guaranteed to find every possible
|
|
|
|
* preimage, but it finds all except a small finite number.
|
|
|
|
* In particular, when the number of bits in the modulus isn't
|
|
|
|
* a multiple of 8 (i.e. for curve25519), it sets the high bits
|
|
|
|
* independently, which enables the generated data to be uniform.
|
|
|
|
* But it doesn't add p, so you'll never get exactly p from this
|
|
|
|
* function. This might change in the future, especially if
|
|
|
|
* we ever support eg Brainpool curves, where this could cause
|
|
|
|
* real nonuniformity.
|
|
|
|
*
|
|
|
|
* @param [out] recovered_hash Encoded data.
|
|
|
|
* @param [in] pt The point to encode.
|
|
|
|
* @param [in] which A value determining which inverse point
|
|
|
|
* to return.
|
|
|
|
*
|
|
|
|
* @retval DECAF_SUCCESS The inverse succeeded.
|
|
|
|
* @retval DECAF_FAILURE The inverse failed.
|
|
|
|
*/
|
|
|
|
decaf_error_t
|
2017-11-16 16:27:48 +00:00
|
|
|
curve448_invert_elligator_nonuniform (
|
2017-11-15 15:27:21 +00:00
|
|
|
unsigned char recovered_hash[DECAF_448_HASH_BYTES],
|
2017-11-16 16:27:48 +00:00
|
|
|
const curve448_point_t pt,
|
2017-11-15 15:27:21 +00:00
|
|
|
uint32_t which
|
|
|
|
) DECAF_API_VIS DECAF_NONNULL DECAF_NOINLINE DECAF_WARN_UNUSED;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Inverse of elligator-like hash to curve.
|
|
|
|
*
|
|
|
|
* This function writes to the buffer, to make it so that
|
2017-11-16 16:27:48 +00:00
|
|
|
* curve448_point_from_hash_uniform(buffer) = pt if
|
2017-11-15 15:27:21 +00:00
|
|
|
* possible. Since there may be multiple preimages, the
|
|
|
|
* "which" parameter chooses between them. To ensure uniform
|
|
|
|
* inverse sampling, this function succeeds or fails
|
|
|
|
* independently for different "which" values.
|
|
|
|
*
|
|
|
|
* @param [out] recovered_hash Encoded data.
|
|
|
|
* @param [in] pt The point to encode.
|
|
|
|
* @param [in] which A value determining which inverse point
|
|
|
|
* to return.
|
|
|
|
*
|
|
|
|
* @retval DECAF_SUCCESS The inverse succeeded.
|
|
|
|
* @retval DECAF_FAILURE The inverse failed.
|
|
|
|
*/
|
|
|
|
decaf_error_t
|
2017-11-16 16:27:48 +00:00
|
|
|
curve448_invert_elligator_uniform (
|
2017-11-15 15:27:21 +00:00
|
|
|
unsigned char recovered_hash[2*DECAF_448_HASH_BYTES],
|
2017-11-16 16:27:48 +00:00
|
|
|
const curve448_point_t pt,
|
2017-11-15 15:27:21 +00:00
|
|
|
uint32_t which
|
|
|
|
) DECAF_API_VIS DECAF_NONNULL DECAF_NOINLINE DECAF_WARN_UNUSED;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Overwrite scalar with zeros.
|
|
|
|
*/
|
2017-11-16 16:27:48 +00:00
|
|
|
void curve448_scalar_destroy (
|
|
|
|
curve448_scalar_t scalar
|
2017-11-15 15:27:21 +00:00
|
|
|
) DECAF_NONNULL DECAF_API_VIS;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Overwrite point with zeros.
|
|
|
|
*/
|
2017-11-16 16:27:48 +00:00
|
|
|
void curve448_point_destroy (
|
|
|
|
curve448_point_t point
|
2017-11-15 15:27:21 +00:00
|
|
|
) DECAF_NONNULL DECAF_API_VIS;
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern "C" */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __DECAF_POINT_448_H__ */
|