Ai
1 Star 0 Fork 0

子安/libtommath

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
bn_mp_expt_d.c 309 Bytes
Copy Edit Raw Blame History
Daniel Mendler authored 2019-05-13 06:22 +08:00 . use enums mp_err, mp_ord, mp_bool, mp_sign
#include "tommath_private.h"
#ifdef BN_MP_EXPT_D_C
/* LibTomMath, multiple-precision integer library -- Tom St Denis */
/* SPDX-License-Identifier: Unlicense */
/* wrapper function for mp_expt_d_ex() */
mp_err mp_expt_d(const mp_int *a, mp_digit b, mp_int *c)
{
return mp_expt_d_ex(a, b, c, 0);
}
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/andrewgithub/libtommath.git
git@gitee.com:andrewgithub/libtommath.git
andrewgithub
libtommath
libtommath
develop

Search