25 #ifndef __DECAF_POINT_448_HXX__
26 #define __DECAF_POINT_448_HXX__ 1
30 #define _XOPEN_SOURCE 600
39 #include <sys/types.h>
43 #if __cplusplus >= 201103L
44 #define DECAF_NOEXCEPT noexcept
46 #define DECAF_NOEXCEPT throw()
58 static inline const char *
name() {
return "Ed448-Goldilocks"; }
61 static inline int bits() {
return 448; }
95 inline Scalar(uint64_t w) DECAF_NOEXCEPT { *
this = w; }
98 inline Scalar(int64_t w) DECAF_NOEXCEPT { *
this = w; }
101 inline Scalar(
unsigned int w) DECAF_NOEXCEPT { *
this = w; }
104 inline Scalar(
int w) DECAF_NOEXCEPT { *
this = w; }
119 inline Scalar(
const Block &buffer) DECAF_NOEXCEPT { *
this = buffer; }
139 #pragma warning ( push)
140 #pragma warning ( disable : 4146)
142 Scalar t(-(uint64_t)INT_MIN);
144 #pragma warning ( pop)
152 inline Scalar&
operator=(
unsigned int w) DECAF_NOEXCEPT {
return *
this = (uint64_t)w; }
250 )
const DECAF_NOEXCEPT;
309 inline explicit Point(
Rng &rng,
bool uniform =
true) DECAF_NOEXCEPT {
417 memcpy(b.data(), s.data(), s.size());
423 memcpy(b.data(), s.data(), s.size());
497 )
const DECAF_NOEXCEPT {
546 )
const DECAF_NOEXCEPT {
548 memset(buf2,0,
sizeof(buf2));
559 for (
size_t i=0; i<buf.size() && i<
HASH_BYTES; i++) {
560 buf[i] = (buf[i] & ~ret) | (buf2[i] &ret);
563 return decaf_succeed_if(ret);
573 for (
int i=0; i<4; i++) { hint |= uint32_t(out[
HASH_BYTES-4+i])<<(8*i); }
575 }
while (!decaf_successful(done));
598 :
protected OwnedOrUnowned<Precomputed,Precomputed_U>
619 ) DECAF_NOEXCEPT : OwnedOrUnowned<Precomputed,Precomputed_U>(yours) {}
622 #if __cplusplus >= 201103L
625 OwnedOrUnowned<Precomputed,Precomputed_U>::operator= (it);
636 OwnedOrUnowned<Precomputed,Precomputed_U>::operator= (it);
654 : OwnedOrUnowned<
Precomputed,Precomputed_U>() { *
this = it; }
660 : OwnedOrUnowned<
Precomputed,Precomputed_U>() { *
this = it; }
673 friend class OwnedOrUnowned<
Precomputed,Precomputed_U>;
675 static inline size_t alignment() DECAF_NOEXCEPT {
return decaf_448_alignof_precomputed_s; }
713 return decaf_x448(out.data(), pk.data(), scalar.data());
769 const FixedBlock<Ed448Goldilocks::Point::SER_BYTES> &in,
777 throw CryptoException();
783 FixedBuffer<Ed448Goldilocks::Point::SER_BYTES> &out,
784 const FixedBlock<Ed448Goldilocks::Point::SER_BYTES> &in,
787 )
const DECAF_NOEXCEPT {
794 #undef DECAF_NOEXCEPT
A reference to a block of data, which (when accessed through this base class) is const.
Definition: secure_buffer.hxx:159
const unsigned char * data() const DECAF_NOEXCEPT
Get const data.
Definition: secure_buffer.hxx:199
A reference to a writable block of data.
Definition: secure_buffer.hxx:270
const unsigned char * data() const DECAF_NOEXCEPT
Get const data.
Definition: secure_buffer.hxx:282
An exception for when crypto (ie point decode) has failed.
Definition: secure_buffer.hxx:119
Element of prime-order elliptic curve group.
Definition: point_448.hxx:254
static const int LADDER_ENCODE_RATIO
Ratio due to ladder decoding.
Definition: point_448.hxx:278
static const size_t LADDER_BYTES
Bytes required for EdDSA encoding.
Definition: point_448.hxx:269
Point(const Wrapped &q=decaf_448_point_identity) DECAF_NOEXCEPT
Constructor sets to identity by default.
Definition: point_448.hxx:297
static const unsigned int INVERT_ELLIGATOR_WHICH_BITS
Number of bits in invert_elligator which are actually used.
Definition: point_448.hxx:286
Point & operator/=(const Scalar &s)
Multiply by s.inverse().
Definition: point_448.hxx:482
static Point double_scalarmul(const Point &q, const Scalar &qs, const Point &r, const Scalar &rs) DECAF_NOEXCEPT
Double-scalar multiply, equivalent to q*qs + r*rs but faster.
Definition: point_448.hxx:488
void mul_by_ratio_and_encode_like_ladder(FixedBuffer< LADDER_BYTES > &out) const
Multiply by LADDER_ENCODE_RATIO and encode like X25519/X448.
Definition: point_448.hxx:394
Point(const FixedBlock< SER_BYTES > &buffer, bool allow_identity=true)
Initialize from a fixed-length byte string.
Definition: point_448.hxx:326
decaf_448_point_t Wrapped
Wrapped C type.
Definition: point_448.hxx:257
Point & operator*=(const Scalar &s) DECAF_NOEXCEPT
Scalar multiply in place.
Definition: point_448.hxx:476
Point(Rng &rng, bool uniform=true) DECAF_NOEXCEPT
Construct from RNG.
Definition: point_448.hxx:309
Point & operator=(const Point &q) DECAF_NOEXCEPT
Assignment.
Definition: point_448.hxx:303
Point operator-() const DECAF_NOEXCEPT
Point negate.
Definition: point_448.hxx:458
void mul_by_ratio_and_encode_like_eddsa(FixedBuffer< DECAF_EDDSA_448_PUBLIC_BYTES > &out) const
Multiply by EDDSA_ENCODE_RATIO and encode like EdDSA.
Definition: point_448.hxx:380
static const Point identity() DECAF_NOEXCEPT
Return the identity point of the curve.
Definition: point_448.hxx:583
decaf_error_t DECAF_WARN_UNUSED decode_like_eddsa_and_mul_by_ratio_noexcept(const FixedBlock< DECAF_EDDSA_448_PUBLIC_BYTES > &buffer) DECAF_NOEXCEPT
Initialize from C++ fixed-length byte string, like EdDSA.
Definition: point_448.hxx:355
size_t ser_size() const DECAF_NOEXCEPT
Serializable instance.
Definition: point_448.hxx:438
Point & double_in_place() DECAF_NOEXCEPT
Double the point in place.
Definition: point_448.hxx:464
Point debugging_pscale(const FixedBlock< SER_BYTES > factor) const DECAF_NOEXCEPT
Return a point equal to *this, whose internal data has a modified representation.
Definition: point_448.hxx:528
Point & operator-=(const Point &q) DECAF_NOEXCEPT
Point subtract.
Definition: point_448.hxx:455
void decode_like_eddsa_and_mul_by_ratio(const FixedBlock< DECAF_EDDSA_448_PUBLIC_BYTES > &buffer)
Decode from EDDSA, multiply by EDDSA_DECODE_RATIO, and ignore any remaining cofactor information.
Definition: point_448.hxx:366
Point & operator+=(const Point &q) DECAF_NOEXCEPT
Point add.
Definition: point_448.hxx:449
SecureBuffer steg_encode(Rng &rng) const
Steganographically encode this.
Definition: point_448.hxx:567
Wrapped p
The c-level object.
Definition: point_448.hxx:289
Point debugging_torque() const DECAF_NOEXCEPT
Return a point equal to *this, whose internal data is rotated by a torsion element.
Definition: point_448.hxx:521
static Point double_scalarmul(const Scalar &qs, const Point &q, const Scalar &rs, const Point &r) DECAF_NOEXCEPT
Double-scalar multiply, equivalent to q*qs + r*rs but faster.
Definition: point_448.hxx:505
Point times_two() const DECAF_NOEXCEPT
Double the point out of place.
Definition: point_448.hxx:461
static const int EDDSA_ENCODE_RATIO
Ratio due to EdDSA encoding.
Definition: point_448.hxx:272
void serialize_into(unsigned char *buffer) const DECAF_NOEXCEPT
Serializable instance.
Definition: point_448.hxx:441
Point operator+(const Point &q) const DECAF_NOEXCEPT
Point add.
Definition: point_448.hxx:446
Point non_secret_combo_with_base(const Scalar &s, const Scalar &s_base) DECAF_NOEXCEPT
Double-scalar multiply: this point by the first scalar and base by the second scalar.
Definition: point_448.hxx:516
static const size_t SER_BYTES
Size of a serialized element.
Definition: point_448.hxx:260
SecureBuffer mul_by_ratio_and_encode_like_ladder() const
Multiply by LADDER_ENCODE_RATIO and encode like X25519/X448.
Definition: point_448.hxx:387
Point debugging_pscale(Rng &r) const DECAF_NOEXCEPT
Return a point equal to *this, whose internal data has a randomized representation.
Definition: point_448.hxx:535
void set_to_hash(const Block &s) DECAF_NOEXCEPT
Map to the curve from a hash buffer.
Definition: point_448.hxx:414
Point operator*(const Scalar &s) const DECAF_NOEXCEPT
Scalar multiply.
Definition: point_448.hxx:473
bool operator==(const Point &q) const DECAF_NOEXCEPT
Constant-time compare.
Definition: point_448.hxx:470
static const size_t EDDSA_BYTES
Bytes required for EdDSA encoding.
Definition: point_448.hxx:266
Point operator/(const Scalar &s) const
Multiply by s.inverse().
Definition: point_448.hxx:479
void dual_scalarmul(Point &q1, Point &q2, const Scalar &r1, const Scalar &r2) const DECAF_NOEXCEPT
Dual-scalar multiply, equivalent to this*r1, this*r2 but faster.
Definition: point_448.hxx:495
static const Point base() DECAF_NOEXCEPT
Return the base point of the curve.
Definition: point_448.hxx:580
Point(const Point &q) DECAF_NOEXCEPT
Copy constructor.
Definition: point_448.hxx:300
~Point() DECAF_NOEXCEPT
Destructor securely zeorizes the point.
Definition: point_448.hxx:306
decaf_error_t DECAF_WARN_UNUSED decode(const FixedBlock< SER_BYTES > &buffer, bool allow_identity=true) DECAF_NOEXCEPT
Initialize from C++ fixed-length byte string.
Definition: point_448.hxx:341
static const size_t STEG_BYTES
Size of a steganographically-encoded curve element.
Definition: point_448.hxx:283
static const int EDDSA_DECODE_RATIO
Ratio due to EdDSA decoding.
Definition: point_448.hxx:275
static Point from_hash(const Block &s) DECAF_NOEXCEPT
Map uniformly to the curve from a hash buffer.
Definition: point_448.hxx:404
SecureBuffer mul_by_ratio_and_encode_like_eddsa() const
Multiply by EDDSA_ENCODE_RATIO and encode like EdDSA.
Definition: point_448.hxx:373
bool operator!=(const Point &q) const DECAF_NOEXCEPT
Constant-time compare.
Definition: point_448.hxx:467
static const size_t HASH_BYTES
Bytes required for hash.
Definition: point_448.hxx:263
bool validate() const DECAF_NOEXCEPT
Validate / sanity check.
Definition: point_448.hxx:485
decaf_error_t invert_elligator(Buffer buf, uint32_t hint) const DECAF_NOEXCEPT
Modify buffer so that Point::from_hash(Buffer) == *this, and return DECAF_SUCCESS; or leave buf unmod...
Definition: point_448.hxx:544
Precomputed table of points.
Definition: point_448.hxx:600
static const Precomputed base() DECAF_NOEXCEPT
Return the table for the base point.
Definition: point_448.hxx:669
Precomputed(const Precomputed &it)
Copy constructor.
Definition: point_448.hxx:653
Point operator/(const Scalar &s) const
Multiply by s.inverse().
Definition: point_448.hxx:666
Precomputed(const Point &it)
Constructor which initializes from point.
Definition: point_448.hxx:659
Precomputed & operator=(const Point &it)
Initilaize from point.
Definition: point_448.hxx:644
~Precomputed() DECAF_NOEXCEPT
Destructor securely zeorizes the memory.
Definition: point_448.hxx:604
Precomputed(const Precomputed_U &yours= *decaf_448_precomputed_base) DECAF_NOEXCEPT
Initialize from underlying type, declared as a reference to prevent it from being called with 0,...
Definition: point_448.hxx:617
Point operator*(const Scalar &s) const DECAF_NOEXCEPT
Fixed base scalarmul.
Definition: point_448.hxx:663
A scalar modulo the curve order.
Definition: point_448.hxx:78
Scalar & operator+=(const Scalar &q) DECAF_NOEXCEPT
Add to this.
Definition: point_448.hxx:179
Scalar(const Block &buffer) DECAF_NOEXCEPT
Construct from arbitrary-length little-endian byte sequence.
Definition: point_448.hxx:119
Scalar(int64_t w) DECAF_NOEXCEPT
Set to a signed word.
Definition: point_448.hxx:98
size_t ser_size() const DECAF_NOEXCEPT
Serializable instance.
Definition: point_448.hxx:122
static const size_t SER_BYTES
Size of a serialized element.
Definition: point_448.hxx:84
Scalar half() const
Return half this scalar.
Definition: point_448.hxx:221
Scalar operator/(const Scalar &q) const
Return this/q.
Definition: point_448.hxx:215
decaf_error_t DECAF_WARN_UNUSED direct_scalarmul_noexcept(FixedBuffer< SER_BYTES > &out, const FixedBlock< SER_BYTES > &in, decaf_bool_t allow_identity=DECAF_FALSE, decaf_bool_t short_circuit=DECAF_TRUE) const DECAF_NOEXCEPT
Direct scalar multiplication.
~Scalar() DECAF_NOEXCEPT
Destructor securely zeorizes the scalar.
Definition: point_448.hxx:158
Scalar & operator=(uint64_t w) DECAF_NOEXCEPT
Assign from unsigned 64-bit integer.
Definition: point_448.hxx:133
SecureBuffer direct_scalarmul(const FixedBlock< SER_BYTES > &in, decaf_bool_t allow_identity=DECAF_FALSE, decaf_bool_t short_circuit=DECAF_TRUE) const
Direct scalar multiplication.
Scalar & operator=(int w) DECAF_NOEXCEPT
Assign from signed int.
Definition: point_448.hxx:155
Scalar inverse() const
Return 1/this.
Definition: point_448.hxx:199
Scalar(const Scalar &x) DECAF_NOEXCEPT
Copy constructor.
Definition: point_448.hxx:116
Scalar operator*(const Scalar &q) const DECAF_NOEXCEPT
Multiply.
Definition: point_448.hxx:188
decaf_error_t DECAF_WARN_UNUSED inverse_noexcept(Scalar &r) const DECAF_NOEXCEPT
Invert with Fermat's Little Theorem (slow!).
Definition: point_448.hxx:210
Scalar & operator/=(const Scalar &q)
Set this to this/q.
Definition: point_448.hxx:218
Scalar(Rng &rng) DECAF_NOEXCEPT
Construct from RNG.
Definition: point_448.hxx:107
bool operator==(const Scalar &q) const DECAF_NOEXCEPT
Compare in constant time.
Definition: point_448.hxx:227
Scalar & operator=(const Scalar &x) DECAF_NOEXCEPT
Assignment.
Definition: point_448.hxx:130
Scalar operator+(const Scalar &q) const DECAF_NOEXCEPT
Add.
Definition: point_448.hxx:176
Scalar(uint64_t w) DECAF_NOEXCEPT
Set to an unsigned word.
Definition: point_448.hxx:95
bool operator!=(const Scalar &q) const DECAF_NOEXCEPT
Compare in constant time.
Definition: point_448.hxx:224
Scalar & operator-=(const Scalar &q) DECAF_NOEXCEPT
Subtract from this.
Definition: point_448.hxx:185
Scalar & operator*=(const Scalar &q) DECAF_NOEXCEPT
Multiply into this.
Definition: point_448.hxx:191
Scalar & operator=(unsigned int w) DECAF_NOEXCEPT
Assign from unsigned int.
Definition: point_448.hxx:152
Scalar(unsigned int w) DECAF_NOEXCEPT
Set to an unsigned word.
Definition: point_448.hxx:101
Scalar operator-() const DECAF_NOEXCEPT
Negate.
Definition: point_448.hxx:194
static decaf_error_t DECAF_WARN_UNUSED decode(Scalar &sc, const FixedBlock< SER_BYTES > buffer) DECAF_NOEXCEPT
Decode from correct-length little-endian byte sequence.
Definition: point_448.hxx:169
Wrapped s
access to the underlying scalar object
Definition: point_448.hxx:87
decaf_448_scalar_t Wrapped
wrapped C type
Definition: point_448.hxx:81
Scalar(int w) DECAF_NOEXCEPT
Set to a signed word.
Definition: point_448.hxx:104
void serialize_into(unsigned char *buffer) const DECAF_NOEXCEPT
Serializable instance.
Definition: point_448.hxx:125
Scalar & operator=(int64_t w) DECAF_NOEXCEPT
Assign from signed int.
Definition: point_448.hxx:137
Scalar(const Wrapped &t=decaf_448_scalar_zero) DECAF_NOEXCEPT
Construct from decaf_scalar_t object.
Definition: point_448.hxx:113
Scalar & operator=(const Block &bl) DECAF_NOEXCEPT
Assign from arbitrary-length little-endian byte sequence in a Block.
Definition: point_448.hxx:161
A fixed-size stack-allocated buffer (for DECAF_NOEXCEPT semantics)
Definition: secure_buffer.hxx:337
A fixed-size block.
Definition: secure_buffer.hxx:253
A fixed-size block.
Definition: secure_buffer.hxx:310
Prototype of a random number generator.
Definition: secure_buffer.hxx:138
Base class of objects which support serialization.
Definition: secure_buffer.hxx:89
void DECAF_API_VIS decaf_bzero(void *data, size_t size) DECAF_NONNULL
Overwrite data with zeros.
decaf_bool_t DECAF_API_VIS decaf_memeq(const void *data1, const void *data2, size_t size) DECAF_NONNULL DECAF_WARN_UNUSED
Compare two buffers, returning DECAF_TRUE if they are equal.
uint32_t decaf_bool_t
"Boolean" type, will be set to all-zero or all-one (i.e.
Definition: common.h:89
decaf_error_t
Another boolean type used to indicate success or failure.
Definition: common.h:120
@ DECAF_SUCCESS
The operation succeeded.
Definition: common.h:121
A group of prime order p, based on Ed448-Goldilocks.
#define DECAF_448_EDDSA_ENCODE_RATIO
EdDSA encoding ratio.
Definition: ed448.h:57
#define DECAF_EDDSA_448_PUBLIC_BYTES
Number of bytes in an EdDSA public key.
Definition: ed448.h:27
decaf_error_t DECAF_API_VIS decaf_448_point_decode_like_eddsa_and_mul_by_ratio(decaf_448_point_t p, const uint8_t enc[DECAF_EDDSA_448_PUBLIC_BYTES]) DECAF_NONNULL DECAF_NOINLINE
EdDSA point decoding.
#define DECAF_448_EDDSA_DECODE_RATIO
EdDSA decoding ratio.
Definition: ed448.h:60
void DECAF_API_VIS decaf_448_point_mul_by_ratio_and_encode_like_eddsa(uint8_t enc[DECAF_EDDSA_448_PUBLIC_BYTES], const decaf_448_point_t p) DECAF_NONNULL DECAF_NOINLINE
EdDSA point encoding.
const uint8_t decaf_x448_base_point[DECAF_X448_PUBLIC_BYTES]
The base point for X448 Diffie-Hellman.
Definition: decaf.c:66
Namespace for all libdecaf C++ objects.
Definition: ed255.hxx:41
std::vector< unsigned char, SanitizingAllocator< unsigned char, 0 > > SecureBuffer
A variant of std::vector which securely zerozes its state when destructed.
Definition: secure_buffer.hxx:79
A group of prime order p, based on Ed448-Goldilocks.
void DECAF_API_VIS decaf_448_scalar_halve(decaf_448_scalar_t out, const decaf_448_scalar_t a) DECAF_NONNULL DECAF_NOINLINE
Halve a scalar.
#define DECAF_X448_PUBLIC_BYTES
Number of bytes in an x448 public key.
Definition: point_448.h:62
void DECAF_API_VIS decaf_448_point_negate(decaf_448_point_t nega, const decaf_448_point_t a) DECAF_NONNULL
Negate a point to produce another point.
void DECAF_API_VIS decaf_448_point_sub(decaf_448_point_t diff, const decaf_448_point_t a, const decaf_448_point_t b) DECAF_NONNULL
Subtract two points to produce a third point.
void DECAF_API_VIS decaf_448_point_mul_by_ratio_and_encode_like_x448(uint8_t out[DECAF_X448_PUBLIC_BYTES], const decaf_448_point_t p) DECAF_NONNULL
Multiply a point by DECAF_X448_ENCODE_RATIO, then encode it like RFC 7748.
void DECAF_API_VIS decaf_448_point_encode(uint8_t ser[DECAF_448_SER_BYTES], const decaf_448_point_t pt) DECAF_NONNULL DECAF_NOINLINE
Encode a point as a sequence of bytes.
void DECAF_API_VIS decaf_448_base_double_scalarmul_non_secret(decaf_448_point_t combo, const decaf_448_scalar_t scalar1, const decaf_448_point_t base2, const decaf_448_scalar_t scalar2) DECAF_NONNULL DECAF_NOINLINE
Multiply two base points by two scalars: scaled = scalar1*decaf_448_point_base + scalar2*base2.
decaf_error_t DECAF_API_VIS decaf_448_invert_elligator_nonuniform(unsigned char recovered_hash[DECAF_448_HASH_BYTES], const decaf_448_point_t pt, uint32_t which) DECAF_NONNULL DECAF_NOINLINE DECAF_WARN_UNUSED
Inverse of elligator-like hash to curve.
struct decaf_448_point_s decaf_448_point_t[1]
Representation of a point on the elliptic curve.
#define DECAF_448_INVERT_ELLIGATOR_WHICH_BITS
Number of bits in the "which" field of an elligator inverse.
Definition: point_448.h:53
decaf_bool_t DECAF_API_VIS decaf_448_scalar_eq(const decaf_448_scalar_t a, const decaf_448_scalar_t b) DECAF_WARN_UNUSED DECAF_NONNULL DECAF_NOINLINE
Compare two scalars.
decaf_bool_t DECAF_API_VIS decaf_448_point_valid(const decaf_448_point_t to_test) DECAF_WARN_UNUSED DECAF_NONNULL DECAF_NOINLINE
Test that a point is valid, for debugging purposes.
void DECAF_API_VIS decaf_448_point_destroy(decaf_448_point_t point) DECAF_NONNULL
Securely erase a point by overwriting it with zeros.
decaf_error_t DECAF_API_VIS decaf_x448(uint8_t shared[DECAF_X448_PUBLIC_BYTES], const uint8_t base[DECAF_X448_PUBLIC_BYTES], const uint8_t scalar[DECAF_X448_PRIVATE_BYTES]) DECAF_NONNULL DECAF_WARN_UNUSED DECAF_NOINLINE
RFC 7748 Diffie-Hellman scalarmul, used to compute shared secrets.
#define DECAF_X448_ENCODE_RATIO
X448 encoding ratio.
Definition: point_448.h:59
void DECAF_API_VIS decaf_448_point_from_hash_nonuniform(decaf_448_point_t pt, const unsigned char hashed_data[DECAF_448_HASH_BYTES]) DECAF_NONNULL DECAF_NOINLINE
Almost-Elligator-like hash to curve.
#define DECAF_448_SCALAR_BYTES
Number of bytes in a serialized scalar.
Definition: point_448.h:50
void DECAF_API_VIS decaf_448_scalar_decode_long(decaf_448_scalar_t out, const unsigned char *ser, size_t ser_len) DECAF_NONNULL DECAF_NOINLINE
Read a scalar from wire format or from bytes.
void DECAF_API_VIS decaf_448_point_debugging_torque(decaf_448_point_t q, const decaf_448_point_t p) DECAF_NONNULL DECAF_NOINLINE
Torque a point, for debugging purposes.
void DECAF_API_VIS decaf_448_point_double_scalarmul(decaf_448_point_t combo, const decaf_448_point_t base1, const decaf_448_scalar_t scalar1, const decaf_448_point_t base2, const decaf_448_scalar_t scalar2) DECAF_NONNULL DECAF_NOINLINE
Multiply two base points by two scalars: scaled = scalar1*base1 + scalar2*base2.
void DECAF_API_VIS decaf_448_point_add(decaf_448_point_t sum, const decaf_448_point_t a, const decaf_448_point_t b) DECAF_NONNULL
Add two points to produce a third point.
decaf_bool_t DECAF_API_VIS decaf_448_point_eq(const decaf_448_point_t a, const decaf_448_point_t b) DECAF_WARN_UNUSED DECAF_NONNULL DECAF_NOINLINE
Test whether two points are equal.
decaf_error_t DECAF_API_VIS decaf_448_direct_scalarmul(uint8_t scaled[DECAF_448_SER_BYTES], const uint8_t base[DECAF_448_SER_BYTES], const decaf_448_scalar_t scalar, decaf_bool_t allow_identity, decaf_bool_t short_circuit) DECAF_NONNULL DECAF_WARN_UNUSED DECAF_NOINLINE
Multiply a base point by a scalar: scaled = scalar*base.
void DECAF_API_VIS decaf_448_point_from_hash_uniform(decaf_448_point_t pt, const unsigned char hashed_data[2 *DECAF_448_HASH_BYTES]) DECAF_NONNULL DECAF_NOINLINE
Indifferentiable hash function encoding to curve.
void DECAF_API_VIS decaf_448_scalar_destroy(decaf_448_scalar_t scalar) DECAF_NONNULL
Securely erase a scalar.
decaf_error_t DECAF_API_VIS decaf_448_scalar_decode(decaf_448_scalar_t out, const unsigned char ser[DECAF_448_SCALAR_BYTES]) DECAF_WARN_UNUSED DECAF_NONNULL DECAF_NOINLINE
Read a scalar from wire format or from bytes.
void DECAF_API_VIS decaf_448_point_debugging_pscale(decaf_448_point_t q, const decaf_448_point_t p, const unsigned char factor[DECAF_448_SER_BYTES]) DECAF_NONNULL DECAF_NOINLINE
Projectively scale a point, for debugging purposes.
struct decaf_448_scalar_s decaf_448_scalar_t[1]
Representation of an element of the scalar field.
void DECAF_API_VIS decaf_448_scalar_set_unsigned(decaf_448_scalar_t out, uint64_t a) DECAF_NONNULL
Set a scalar to an unsigned 64-bit integer.
void DECAF_API_VIS decaf_448_point_dual_scalarmul(decaf_448_point_t a1, decaf_448_point_t a2, const decaf_448_point_t base1, const decaf_448_scalar_t scalar1, const decaf_448_scalar_t scalar2) DECAF_NONNULL DECAF_NOINLINE
Multiply one base point by two scalars:
void DECAF_API_VIS decaf_448_precompute(decaf_448_precomputed_s *a, const decaf_448_point_t b) DECAF_NONNULL DECAF_NOINLINE
Precompute a table for fast scalar multiplication.
void DECAF_API_VIS decaf_448_scalar_mul(decaf_448_scalar_t out, const decaf_448_scalar_t a, const decaf_448_scalar_t b) DECAF_NONNULL DECAF_NOINLINE
Multiply two scalars.
void DECAF_API_VIS decaf_448_scalar_sub(decaf_448_scalar_t out, const decaf_448_scalar_t a, const decaf_448_scalar_t b) DECAF_NONNULL DECAF_NOINLINE
Subtract two scalars.
void DECAF_API_VIS decaf_448_point_scalarmul(decaf_448_point_t scaled, const decaf_448_point_t base, const decaf_448_scalar_t scalar) DECAF_NONNULL DECAF_NOINLINE
Multiply a base point by a scalar: scaled = scalar*base.
void DECAF_API_VIS decaf_x448_derive_public_key(uint8_t out[DECAF_X448_PUBLIC_BYTES], const uint8_t scalar[DECAF_X448_PRIVATE_BYTES]) DECAF_NONNULL DECAF_NOINLINE
RFC 7748 Diffie-Hellman base point scalarmul.
void DECAF_API_VIS decaf_448_point_double(decaf_448_point_t two_a, const decaf_448_point_t a) DECAF_NONNULL
Double a point.
#define DECAF_448_SER_BYTES
Number of bytes in a serialized point.
Definition: point_448.h:42
DECAF_API_VIS const decaf_448_point_t decaf_448_point_identity
The identity (zero) point on the curve.
DECAF_API_VIS const decaf_448_point_t decaf_448_point_base
An arbitrarily-chosen base point on the curve.
void DECAF_API_VIS decaf_448_precomputed_scalarmul(decaf_448_point_t scaled, const decaf_448_precomputed_s *base, const decaf_448_scalar_t scalar) DECAF_NONNULL DECAF_NOINLINE
Multiply a precomputed base point by a scalar: scaled = scalar*base.
void DECAF_API_VIS decaf_448_scalar_add(decaf_448_scalar_t out, const decaf_448_scalar_t a, const decaf_448_scalar_t b) DECAF_NONNULL DECAF_NOINLINE
Add two scalars.
#define DECAF_448_HASH_BYTES
Number of bytes in an elligated point.
Definition: point_448.h:47
#define DECAF_X448_PRIVATE_BYTES
Number of bytes in an x448 private key.
Definition: point_448.h:65
DECAF_API_VIS const struct decaf_448_precomputed_s * decaf_448_precomputed_base
Precomputed table of multiples of the base point on the curve.
DECAF_API_VIS const decaf_448_scalar_t decaf_448_scalar_zero
The scalar 0.
decaf_error_t DECAF_API_VIS decaf_448_point_decode(decaf_448_point_t pt, const uint8_t ser[DECAF_448_SER_BYTES], decaf_bool_t allow_identity) DECAF_WARN_UNUSED DECAF_NONNULL DECAF_NOINLINE
Decode a point from a sequence of bytes.
decaf_error_t DECAF_API_VIS decaf_448_invert_elligator_uniform(unsigned char recovered_hash[2 *DECAF_448_HASH_BYTES], const decaf_448_point_t pt, uint32_t which) DECAF_NONNULL DECAF_NOINLINE DECAF_WARN_UNUSED
Inverse of elligator-like hash to curve.
void DECAF_API_VIS decaf_448_scalar_encode(unsigned char ser[DECAF_448_SCALAR_BYTES], const decaf_448_scalar_t s) DECAF_NONNULL DECAF_NOINLINE DECAF_NOINLINE
Serialize a scalar to wire format.
DECAF_API_VIS const size_t decaf_448_sizeof_precomputed_s
Size and alignment of precomputed point tables.
struct decaf_448_precomputed_s decaf_448_precomputed_s
Precomputed table based on a point.
Definition: point_448.h:78
decaf_error_t DECAF_API_VIS decaf_448_scalar_invert(decaf_448_scalar_t out, const decaf_448_scalar_t a) DECAF_WARN_UNUSED DECAF_NONNULL DECAF_NOINLINE
Invert a scalar.
C++ self-zeroizing buffer.
X-only Diffie-Hellman ladder functions.
Definition: point_448.hxx:681
static decaf_error_t DECAF_WARN_UNUSED shared_secret_noexcept(FixedBuffer< PUBLIC_BYTES > &out, const FixedBlock< PUBLIC_BYTES > &pk, const FixedBlock< PRIVATE_BYTES > &scalar) DECAF_NOEXCEPT
Calculate and write into out a shared secret with public key, noexcept version.
Definition: point_448.hxx:708
static SecureBuffer derive_public_key(const FixedBlock< PRIVATE_BYTES > &scalar)
Calculate and return a public key; equivalent to shared_secret(base_point(),scalar) but possibly fast...
Definition: point_448.hxx:732
static void derive_public_key_noexcept(FixedBuffer< PUBLIC_BYTES > &out, const FixedBlock< PRIVATE_BYTES > &scalar) DECAF_NOEXCEPT
Calculate and return a public key into a fixed buffer; equivalent to shared_secret(base_point(),...
Definition: point_448.hxx:744
static const size_t PRIVATE_BYTES
Bytes in an X448 private key.
Definition: point_448.hxx:687
static const size_t PUBLIC_BYTES
Bytes in an X448 public key.
Definition: point_448.hxx:684
static const FixedBlock< PUBLIC_BYTES > base_point() DECAF_NOEXCEPT
Base point for a scalar multiplication.
Definition: point_448.hxx:690
static SecureBuffer DECAF_DEPRECATED("Renamed to derive_public_key") generate_key(const FixedBlock< PRIVATE_BYTES > &scalar)
Calculate and return a public key; equivalent to shared_secret(base_point(),scalar) but possibly fast...
Definition: point_448.hxx:720
static void generate_key_noexcept(FixedBuffer< PUBLIC_BYTES > &out, const FixedBlock< PRIVATE_BYTES > &scalar) DECAF_NOEXCEPT
Calculate and return a public key into a fixed buffer; equivalent to shared_secret(base_point(),...
Definition: point_448.hxx:757
static SecureBuffer shared_secret(const FixedBlock< PUBLIC_BYTES > &pk, const FixedBlock< PRIVATE_BYTES > &scalar)
Calculate and return a shared secret with public key.
Definition: point_448.hxx:695
Ed448-Goldilocks/Decaf instantiation of group.
Definition: point_448.hxx:55
static const char * name()
The name of the curve.
Definition: point_448.hxx:58
static const int REMOVED_COFACTOR
The curve's cofactor (removed, but useful for testing)
Definition: point_448.hxx:64
static const int FIELD_MODULUS_TYPE
Residue class of field modulus: p == this mod 2*(this-1)
Definition: point_448.hxx:67
static int bits()
The name of the curve.
Definition: point_448.hxx:61
Passed to constructors to avoid (conservative) initialization.
Definition: secure_buffer.hxx:133