blob: 9f77f22744c4857364f189219cd195de34615a99 [file] [log] [blame]
Bodo Möller535b9b52000-11-26 16:46:57 +00001=pod
2
3=head1 NAME
4
5BN_swap - exchange BIGNUMs
6
7=head1 SYNOPSIS
8
9 #include <openssl/bn.h>
10
11 void BN_swap(BIGNUM *a, BIGNUM *b);
12
13=head1 DESCRIPTION
14
15BN_swap() exchanges the values of I<a> and I<b>.
16
Rich Salze2f92612016-05-18 11:44:05 -040017=head1 COPYRIGHT
18
Rich Salz9e183d22017-03-11 08:56:44 -050019Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.
Rich Salze2f92612016-05-18 11:44:05 -040020
21Licensed under the OpenSSL license (the "License"). You may not use
22this file except in compliance with the License. You can obtain a copy
23in the file LICENSE in the source distribution or at
24L<https://www.openssl.org/source/license.html>.
25
26=cut