Home | History | Annotate | Download | only in axtls

Lines Matching refs:bigint

20  * Implements the RSA public encryption algorithm. Uses the bigint library to
31 static bigint *bi_crt(const RSA_CTX *rsa, bigint *bi);
135 bigint *decrypted_bi, *dat_bi;
180 bigint *RSA_private(const RSA_CTX *c, bigint *bi_msg)
194 * This should really be in bigint.c (and was at one stage), but needs
197 static bigint *bi_crt(const RSA_CTX *rsa, bigint *bi)
200 bigint *m1, *m2, *h;
245 bigint *RSA_public(const RSA_CTX * c, bigint *bi_msg)
260 bigint *dat_bi, *encrypt_bi;
291 bigint *RSA_sign_verify(BI_CTX *ctx, const uint8_t *sig, int sig_len,
292 bigint *modulus, bigint *pub_exp)
296 bigint *decrypted_bi, *dat_bi;
297 bigint *bir = NULL;