Ignore:
Timestamp:
Feb 7, 2019, 8:36:33 AM (5 years ago)
Author:
coas-nagasima
Message:

wolfsslを3.15.7にバージョンアップ

File:
1 edited

Legend:

Unmodified
Added
Removed
  • asp3_tinet_ecnl_arm/trunk/wolfssl-3.12.2/wolfssl/wolfcrypt/md5.h

    r352 r372  
    1919 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
    2020 */
     21
     22/*!
     23    \file wolfssl/wolfcrypt/md5.h
     24*/
    2125
    2226
     
    4953/* in bytes */
    5054enum {
    51     WC_MD5             =  0,      /* hash type unique */
     55    WC_MD5             =  WC_HASH_TYPE_MD5,
    5256    WC_MD5_BLOCK_SIZE  = 64,
    5357    WC_MD5_DIGEST_SIZE = 16,
     
    5559};
    5660
     61
    5762#ifdef WOLFSSL_MICROCHIP_PIC32MZ
    5863    #include <wolfssl/wolfcrypt/port/pic32/pic32mz-crypt.h>
     64#endif
     65#ifdef STM32_HASH
     66    #include <wolfssl/wolfcrypt/port/st/stm32.h>
    5967#endif
    6068#ifdef WOLFSSL_ASYNC_CRYPT
     
    6472#ifdef WOLFSSL_TI_HASH
    6573    #include "wolfssl/wolfcrypt/port/ti/ti-hash.h"
     74#elif defined(WOLFSSL_IMX6_CAAM)
     75    #include "wolfssl/wolfcrypt/port/caam/wolfcaam_sha.h"
    6676#else
    6777
    6878/* MD5 digest */
    6979typedef struct wc_Md5 {
     80#ifdef STM32_HASH
     81    STM32_HASH_Context stmCtx;
     82#else
    7083    word32  buffLen;   /* in bytes          */
    7184    word32  loLen;     /* length in bytes   */
     
    8194    hashUpdCache cache; /* cache for updates */
    8295#endif
    83 #if defined(STM32_HASH) && defined(WOLFSSL_STM32_CUBEMX)
    84     HASH_HandleTypeDef hashHandle;
    85 #endif
     96#endif /* STM32_HASH */
    8697#ifdef WOLFSSL_ASYNC_CRYPT
    8798    WC_ASYNC_DEV asyncDev;
Note: See TracChangeset for help on using the changeset viewer.