Given the BIGNUM representation:

typedef struct bignum_st {
        BN_ULONG *d;
        int top;
        int dmax;
        int neg;
        int flags;
} BIGNUM;

which is the most significant BN_ULONG?
Is it the first or the last one in the list addressed by d?

Thanks in advance
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to