• Home
  • Raw
  • Download

Lines Matching refs:BN_CTX

345 OPENSSL_EXPORT BN_CTX *BN_CTX_new(void);
349 OPENSSL_EXPORT void BN_CTX_free(BN_CTX *ctx);
353 OPENSSL_EXPORT void BN_CTX_start(BN_CTX *ctx);
358 OPENSSL_EXPORT BIGNUM *BN_CTX_get(BN_CTX *ctx);
362 OPENSSL_EXPORT void BN_CTX_end(BN_CTX *ctx);
395 BN_CTX *ctx);
404 OPENSSL_EXPORT int BN_sqr(BIGNUM *r, const BIGNUM *a, BN_CTX *ctx);
413 BN_CTX *ctx);
423 OPENSSL_EXPORT int BN_sqrt(BIGNUM *out_sqrt, const BIGNUM *in, BN_CTX *ctx);
534 const BIGNUM *divisor, BN_CTX *ctx);
539 const BIGNUM *m, BN_CTX *ctx);
549 const BIGNUM *m, BN_CTX *ctx);
559 const BIGNUM *m, BN_CTX *ctx);
564 BN_CTX *ctx);
569 const BIGNUM *m, BN_CTX *ctx);
579 BN_CTX *ctx);
591 BN_CTX *ctx);
715 BN_CTX *ctx, BN_GENCB *cb);
735 BN_CTX *ctx, int do_trial_division,
754 BN_CTX *ctx, int do_trial_division,
762 BN_CTX *ctx, BN_GENCB *cb);
770 BN_CTX *ctx);
782 const BIGNUM *n, BN_CTX *ctx);
795 const BN_MONT_CTX *mont, BN_CTX *ctx);
807 const BIGNUM *n, BN_CTX *ctx);
818 BN_CTX *ctx);
823 BN_CTX *ctx);
840 const BIGNUM *mod, BN_CTX *bn_ctx);
846 const BN_MONT_CTX *mont, BN_CTX *ctx);
852 const BN_MONT_CTX *mont, BN_CTX *ctx);
861 const BN_MONT_CTX *mont, BN_CTX *ctx);
870 BN_CTX *ctx);
877 const BIGNUM *m, BN_CTX *ctx);
882 const BIGNUM *m, BN_CTX *ctx,
889 BN_CTX *ctx,
915 const BIGNUM *m, BN_CTX *ctx,
923 BN_CTX *ctx, const BN_MONT_CTX *mont);
933 BN_CTX *ctx);
1001 BORINGSSL_MAKE_DELETER(BN_CTX, BN_CTX_free) in BORINGSSL_MAKE_DELETER()
1006 BN_CTXScope(BN_CTX *ctx) : ctx_(ctx) { BN_CTX_start(ctx_); } in BORINGSSL_MAKE_DELETER()
1010 BN_CTX *ctx_; in BORINGSSL_MAKE_DELETER()