Lines Matching refs:base
33 /* Precomputed base */
80 /* Precomputed table for the base point on the curve. */
216 * out (out): The scaled point base*scalar
217 * base (in): The point to be scaled.
222 * C448_FAILURE: The scalarmul didn't succeed, because the base point is in a
227 const uint8_t base[X448_PUBLIC_BYTES],
241 * As it happens, this aligns with the base point definitions; that is,
242 * if you pass the Decaf/Ristretto base point to this function, the result
244 * base point.
255 * RFC 7748 Diffie-Hellman base point scalarmul. This function uses a different
258 * out (out): The scaled point base*scalar
266 * Multiply a precomputed base point by a scalar: out = scalar*base.
268 * scaled (out): The scaled point base*scalar
269 * base (in): The point to be scaled.
274 const curve448_precomputed_s * base,
278 * Multiply two base points by two scalars:
284 * combo (out): The linear combination scalar1*base + scalar2*base2.