OpenSSL 1.0.2f
[tomato.git] / release / src / router / openssl / doc / crypto / BN_copy.pod
blob388dd7df2653df480d589d06a81350d326e72220
1 =pod
3 =head1 NAME
5 BN_copy, BN_dup - copy BIGNUMs
7 =head1 SYNOPSIS
9  #include <openssl/bn.h>
11  BIGNUM *BN_copy(BIGNUM *to, const BIGNUM *from);
13  BIGNUM *BN_dup(const BIGNUM *from);
15 =head1 DESCRIPTION
17 BN_copy() copies B<from> to B<to>. BN_dup() creates a new B<BIGNUM>
18 containing the value B<from>.
20 =head1 RETURN VALUES
22 BN_copy() returns B<to> on success, NULL on error. BN_dup() returns
23 the new B<BIGNUM>, and NULL on error. The error codes can be obtained
24 by L<ERR_get_error(3)|ERR_get_error(3)>.
26 =head1 SEE ALSO
28 L<bn(3)|bn(3)>, L<ERR_get_error(3)|ERR_get_error(3)>
30 =head1 HISTORY
32 BN_copy() and BN_dup() are available in all versions of SSLeay and OpenSSL.
34 =cut