提交 0135e335 编写于 作者: R Richard Levitte

Copy and paste error... bn_add_part_words() should of course call

bn_add_words(), not bn_sub_words()...
上级 f2cc7559
......@@ -215,7 +215,7 @@ BN_ULONG bn_add_part_words(BN_ULONG *r,
BN_ULONG c, l, t;
assert(cl >= 0);
c = bn_sub_words(r, a, b, cl);
c = bn_add_words(r, a, b, cl);
if (dl == 0)
return c;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册