Last change
on this file since 91772 was 91772, checked in by vboxsync, 3 years ago |
openssl-1.1.1l: Applied and adjusted our OpenSSL changes to 1.1.1l. bugref:10126
|
File size:
593 bytes
|
Line | |
---|
1 | =pod
|
---|
2 |
|
---|
3 | =head1 NAME
|
---|
4 |
|
---|
5 | BN_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 |
|
---|
15 | BN_swap() exchanges the values of I<a> and I<b>.
|
---|
16 |
|
---|
17 | =head1 RETURN VALUES
|
---|
18 |
|
---|
19 | BN_swap() does not return a value.
|
---|
20 |
|
---|
21 | =head1 COPYRIGHT
|
---|
22 |
|
---|
23 | Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.
|
---|
24 |
|
---|
25 | Licensed under the OpenSSL license (the "License"). You may not use
|
---|
26 | this file except in compliance with the License. You can obtain a copy
|
---|
27 | in the file LICENSE in the source distribution or at
|
---|
28 | L<https://www.openssl.org/source/license.html>.
|
---|
29 |
|
---|
30 | =cut
|
---|
Note:
See
TracBrowser
for help on using the repository browser.