summaryrefslogtreecommitdiffstats
path: root/doc/crypto/BN_swap.pod
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2000-11-26 16:46:57 +0000
committerBodo Möller <bodo@openssl.org>2000-11-26 16:46:57 +0000
commit535b9b5724e08f27c722982bbf775a862134a22d (patch)
tree17370f6531451bcf2676cfa037c683ed7fcfb3d1 /doc/crypto/BN_swap.pod
parent78a0c1f18d5a1f0e51b7467ef7b153b8c29fbb03 (diff)
Add bn_mod.c (should have happend in the previous commit ...).
BN_swap manual page.
Diffstat (limited to 'doc/crypto/BN_swap.pod')
-rw-r--r--doc/crypto/BN_swap.pod23
1 files changed, 23 insertions, 0 deletions
diff --git a/doc/crypto/BN_swap.pod b/doc/crypto/BN_swap.pod
new file mode 100644
index 0000000000..79efaa1446
--- /dev/null
+++ b/doc/crypto/BN_swap.pod
@@ -0,0 +1,23 @@
+=pod
+
+=head1 NAME
+
+BN_swap - exchange BIGNUMs
+
+=head1 SYNOPSIS
+
+ #include <openssl/bn.h>
+
+ void BN_swap(BIGNUM *a, BIGNUM *b);
+
+=head1 DESCRIPTION
+
+BN_swap() exchanges the values of I<a> and I<b>.
+
+L<bn(3)|bn(3)>
+
+=head1 HISTORY
+
+BN_swap was added in OpenSSL 0.9.7.
+
+=cut