Convert a little-endian unsigned byte array to a BIGNUM.
Declared in <openssl/bn.h>
BIGNUM*
BN_lebin2bn(
unsigned char const* s,
int len,
BIGNUM* ret);
Result BIGNUM, or NULL on error.
| Name | Description |
|---|---|
| s | Little-endian input octets (least significant byte first). |
| len | Number of bytes at s. |
| ret | Destination BIGNUM to reuse, or NULL to allocate a new one. |