Home
last modified time | relevance | path

Searched refs:ECC_POINT_INIT (Results 1 – 4 of 4) sorted by relevance

/linux/crypto/
H A Decrdsa.c85 struct ecc_point cc = ECC_POINT_INIT(s, e, ndigits); /* reuse s, e */ in ecrdsa_verify()
241 ctx->pub_key = ECC_POINT_INIT(ctx->_pubp[0], ctx->_pubp[1], ndigits); in ecrdsa_set_pub_key()
H A Decdsa.c103 struct ecc_point res = ECC_POINT_INIT(x1, y1, ndigits); in _ecdsa_verify()
212 ctx->pub_key = ECC_POINT_INIT(ctx->x, ctx->y, in ecdsa_ecc_ctx_reset()
H A Decc.c1403 struct ecc_point sum = ECC_POINT_INIT(sump[0], sump[1], ndigits); in ecc_point_mult_shamir()
/linux/include/crypto/internal/
H A Decc.h43 #define ECC_POINT_INIT(x, y, ndigits) (struct ecc_point) { x, y, ndigits } macro