BN_swap.pod 596 B

123456789101112131415161718192021222324252627282930
  1. =pod
  2. =head1 NAME
  3. BN_swap - exchange BIGNUMs
  4. =head1 SYNOPSIS
  5. #include <openssl/bn.h>
  6. void BN_swap(BIGNUM *a, BIGNUM *b);
  7. =head1 DESCRIPTION
  8. BN_swap() exchanges the values of I<a> and I<b>.
  9. =head1 RETURN VALUES
  10. BN_swap() does not return a value.
  11. =head1 COPYRIGHT
  12. Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.
  13. Licensed under the Apache License 2.0 (the "License"). You may not use
  14. this file except in compliance with the License. You can obtain a copy
  15. in the file LICENSE in the source distribution or at
  16. L<https://www.openssl.org/source/license.html>.
  17. =cut