Lines Matching refs:MPI

40 typedef struct gcry_mpi *MPI;  typedef
46 MPI mpi_alloc(unsigned nlimbs);
47 void mpi_clear(MPI a);
48 void mpi_free(MPI a);
49 int mpi_resize(MPI a, unsigned nlimbs);
51 static inline MPI mpi_new(unsigned int nbits) in mpi_new()
56 MPI mpi_copy(MPI a);
57 MPI mpi_alloc_like(MPI a);
58 void mpi_snatch(MPI w, MPI u);
59 MPI mpi_set(MPI w, MPI u);
60 MPI mpi_set_ui(MPI w, unsigned long u);
61 MPI mpi_alloc_set_ui(unsigned long u);
62 void mpi_swap_cond(MPI a, MPI b, unsigned long swap);
77 MPI mpi_const(enum gcry_mpi_constants no);
92 MPI mpi_read_raw_data(const void *xbuffer, size_t nbytes);
93 MPI mpi_read_from_buffer(const void *buffer, unsigned *ret_nread);
94 int mpi_fromstr(MPI val, const char *str);
95 MPI mpi_scanval(const char *string);
96 MPI mpi_read_raw_from_sgl(struct scatterlist *sgl, unsigned int len);
97 void *mpi_get_buffer(MPI a, unsigned *nbytes, int *sign);
98 int mpi_read_buffer(MPI a, uint8_t *buf, unsigned buf_len, unsigned *nbytes,
100 int mpi_write_to_sgl(MPI a, struct scatterlist *sg, unsigned nbytes,
103 size_t buflen, size_t *nwritten, MPI a);
106 void mpi_mod(MPI rem, MPI dividend, MPI divisor);
112 mpi_barrett_t mpi_barrett_init(MPI m, int copy);
114 void mpi_mod_barrett(MPI r, MPI x, mpi_barrett_t ctx);
115 void mpi_mul_barrett(MPI w, MPI u, MPI v, mpi_barrett_t ctx);
118 int mpi_powm(MPI res, MPI base, MPI exp, MPI mod);
121 int mpi_cmp_ui(MPI u, ulong v);
122 int mpi_cmp(MPI u, MPI v);
123 int mpi_cmpabs(MPI u, MPI v);
126 int mpi_sub_ui(MPI w, MPI u, unsigned long vval);
129 void mpi_normalize(MPI a);
130 unsigned mpi_get_nbits(MPI a);
131 int mpi_test_bit(MPI a, unsigned int n);
132 void mpi_set_bit(MPI a, unsigned int n);
133 void mpi_set_highbit(MPI a, unsigned int n);
134 void mpi_clear_highbit(MPI a, unsigned int n);
135 void mpi_clear_bit(MPI a, unsigned int n);
136 void mpi_rshift_limbs(MPI a, unsigned int count);
137 void mpi_rshift(MPI x, MPI a, unsigned int n);
138 void mpi_lshift_limbs(MPI a, unsigned int count);
139 void mpi_lshift(MPI x, MPI a, unsigned int n);
142 void mpi_add_ui(MPI w, MPI u, unsigned long v);
143 void mpi_add(MPI w, MPI u, MPI v);
144 void mpi_sub(MPI w, MPI u, MPI v);
145 void mpi_addm(MPI w, MPI u, MPI v, MPI m);
146 void mpi_subm(MPI w, MPI u, MPI v, MPI m);
149 void mpi_mul(MPI w, MPI u, MPI v);
150 void mpi_mulm(MPI w, MPI u, MPI v, MPI m);
153 void mpi_tdiv_r(MPI rem, MPI num, MPI den);
154 void mpi_fdiv_r(MPI rem, MPI dividend, MPI divisor);
155 void mpi_fdiv_q(MPI quot, MPI dividend, MPI divisor);
158 int mpi_invm(MPI x, MPI a, MPI n);
164 MPI x;
165 MPI y;
166 MPI z;
205 MPI p; /* Prime specifying the field GF(p). */
206 MPI a; /* First coefficient of the Weierstrass equation. */
207 MPI b; /* Second coefficient of the Weierstrass equation. */
209 MPI n; /* Order of G. */
214 MPI d; /* Private key. */
227 MPI two_inv_p;
232 MPI scratch[11];
241 void (*addm)(MPI w, MPI u, MPI v, struct mpi_ec_ctx *ctx);
242 void (*subm)(MPI w, MPI u, MPI v, struct mpi_ec_ctx *ec);
243 void (*mulm)(MPI w, MPI u, MPI v, struct mpi_ec_ctx *ctx);
244 void (*pow2)(MPI w, const MPI b, struct mpi_ec_ctx *ctx);
245 void (*mul2)(MPI w, MPI u, struct mpi_ec_ctx *ctx);
250 int flags, MPI p, MPI a, MPI b);
256 int mpi_ec_get_affine(MPI x, MPI y, MPI_POINT point, struct mpi_ec_ctx *ctx);
261 MPI scalar, MPI_POINT point,
274 static inline unsigned int mpi_get_size(MPI a) in mpi_get_size()