Searched refs:pbytes (Results 1 – 1 of 1) sorted by relevance
/linux-5.19.10/crypto/ |
D | sm2.c | 217 MPI m, unsigned int pbytes) in sm2_z_digest_update() argument 227 if (inlen < pbytes) { in sm2_z_digest_update() 229 sm3_update(sctx, zero, pbytes - inlen); in sm2_z_digest_update() 231 } else if (inlen > pbytes) { in sm2_z_digest_update() 233 sm3_update(sctx, in + inlen - pbytes, pbytes); in sm2_z_digest_update() 243 MPI_POINT point, struct mpi_ec_ctx *ec, unsigned int pbytes) in sm2_z_digest_update_point() argument 252 !sm2_z_digest_update(sctx, x, pbytes) && in sm2_z_digest_update_point() 253 !sm2_z_digest_update(sctx, y, pbytes)) in sm2_z_digest_update_point() 269 unsigned int pbytes; in sm2_compute_z_digest() local 278 pbytes = MPI_NBYTES(ec->p); in sm2_compute_z_digest() [all …]
|