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/wolfcrypt/src/md5.c

    r457 r464  
    128128        cau_md5_hash_n((byte*)data, 1, (unsigned char*)md5->digest);
    129129#else
    130         MMCAU_MD5_HashN((byte*)data, 1, (uint32_t*)md5->digest);
     130        MMCAU_MD5_HashN((byte*)data, 1, (word32*)md5->digest);
    131131#endif
    132132        wolfSSL_CryptHwMutexUnLock();
     
    149149                cau_md5_hash_n(local, 1, (unsigned char*)md5->digest);
    150150            #else
    151                 MMCAU_MD5_HashN(local, 1, (uint32_t*)md5->digest);
     151                MMCAU_MD5_HashN(local, 1, (word32*)md5->digest);
    152152            #endif
    153153                data += WC_MD5_BLOCK_SIZE;
     
    163163#else
    164164        MMCAU_MD5_HashN((byte*)data, len / WC_MD5_BLOCK_SIZE,
    165             (uint32_t*)md5->digest);
     165            (word32*)md5->digest);
    166166#endif
    167167        }
Note: See TracChangeset for help on using the changeset viewer.