BN_swap.pod 535 B

1234567891011121314151617181920212223242526
  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 COPYRIGHT
  10. Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.
  11. Licensed under the OpenSSL license (the "License"). You may not use
  12. this file except in compliance with the License. You can obtain a copy
  13. in the file LICENSE in the source distribution or at
  14. L<https://www.openssl.org/source/license.html>.
  15. =cut