aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorKurt Roeckx <kurt@roeckx.be>2015-10-19 22:26:59 +0200
committerKurt Roeckx <kurt@roeckx.be>2015-11-20 22:29:57 +0100
commit32c748140ff94016011efc206a3709e4187ce40b (patch)
tree9c8ce49a434c7b6fbe474b09b2360e5d0316d092 /doc
parent9f6795e7d2d1e35668ad70ba0afc480062be4e2e (diff)
downloadopenssl-32c748140ff94016011efc206a3709e4187ce40b.tar.gz
BN_sub: document that r might be the same as a or b
Reviewed-by: Rich Salz <rsalz@akamai.com> RT #4100, MR #1264
Diffstat (limited to 'doc')
-rw-r--r--doc/crypto/BN_add.pod1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/crypto/BN_add.pod b/doc/crypto/BN_add.pod
index 942048c10d..3ad227458d 100644
--- a/doc/crypto/BN_add.pod
+++ b/doc/crypto/BN_add.pod
@@ -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>.