mirror of https://github.com/openssl/openssl.git
BN_sub: document that r might be the same as a or b
Reviewed-by: Rich Salz <rsalz@akamai.com> RT #4100, MR #1264
This commit is contained in:
parent
9f6795e7d2
commit
32c748140f
|
|
@ -49,6 +49,7 @@ BN_add() adds I<a> and I<b> and places the result in I<r> (C<r=a+b>).
|
|||
I<r> may be the same B<BIGNUM> as I<a> or I<b>.
|
||||
|
||||
BN_sub() subtracts I<b> from I<a> and places the result in I<r> (C<r=a-b>).
|
||||
I<r> may be the same B<BIGNUM> as I<a> or I<b>.
|
||||
|
||||
BN_mul() multiplies I<a> and I<b> and places the result in I<r> (C<r=a*b>).
|
||||
I<r> may be the same B<BIGNUM> as I<a> or I<b>.
|
||||
|
|
|
|||
Loading…
Reference in New Issue