BN_swap.pod 272 B

1234567891011121314151617181920212223
  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. L<bn(3)|bn(3)>
  10. =head1 HISTORY
  11. BN_swap was added in OpenSSL 0.9.7.
  12. =cut