Ignore:
Timestamp:
Jun 22, 2021, 9:00:19 PM (3 years ago)
Author:
coas-nagasima
Message:

WolfSSLとAzure IoT SDKを更新

Location:
azure_iot_hub_f767zi/trunk/wolfssl-4.7.0
Files:
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • azure_iot_hub_f767zi/trunk/wolfssl-4.7.0/wolfssl/openssl/bn.h

    r457 r464  
    4141    int neg;        /* openssh deference */
    4242    void *internal; /* our big num */
    43 #ifdef WOLFSSL_SP_MATH
     43#if defined(WOLFSSL_SP_MATH) || defined(WOLFSSL_SP_MATH_ALL)
    4444    sp_int fp;
    4545#elif defined(USE_FAST_MATH) && !defined(HAVE_WOLF_BIGINT)
     
    5050
    5151#define BN_ULONG WOLFSSL_BN_ULONG
    52 #define WOLFSSL_BN_ULONG mp_digit
     52#define WOLFSSL_BN_ULONG unsigned long
    5353
    5454typedef struct WOLFSSL_BN_CTX WOLFSSL_BN_CTX;
     
    114114WOLFSSL_API int wolfSSL_BN_clear_bit(WOLFSSL_BIGNUM*, int);
    115115WOLFSSL_API int wolfSSL_BN_set_word(WOLFSSL_BIGNUM*, WOLFSSL_BN_ULONG);
    116 WOLFSSL_API unsigned long wolfSSL_BN_get_word(const WOLFSSL_BIGNUM*);
     116WOLFSSL_API WOLFSSL_BN_ULONG wolfSSL_BN_get_word(const WOLFSSL_BIGNUM*);
    117117
    118118WOLFSSL_API int wolfSSL_BN_add(WOLFSSL_BIGNUM*, WOLFSSL_BIGNUM*,
Note: See TracChangeset for help on using the changeset viewer.