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_rx/trunk/wolfssl-3.12.2/wolfcrypt/src/blake2b.c

    r337 r372  
    7171
    7272
    73 static INLINE int blake2b_set_lastnode( blake2b_state *S )
     73static WC_INLINE int blake2b_set_lastnode( blake2b_state *S )
    7474{
    7575  S->f[1] = ~0ULL;
     
    7878
    7979/* Some helper functions, not necessarily useful */
    80 static INLINE int blake2b_set_lastblock( blake2b_state *S )
     80static WC_INLINE int blake2b_set_lastblock( blake2b_state *S )
    8181{
    8282  if( S->last_node ) blake2b_set_lastnode( S );
     
    8686}
    8787
    88 static INLINE int blake2b_increment_counter( blake2b_state *S, const word64
     88static WC_INLINE int blake2b_increment_counter( blake2b_state *S, const word64
    8989                                             inc )
    9090{
     
    9494}
    9595
    96 static INLINE int blake2b_init0( blake2b_state *S )
     96static WC_INLINE int blake2b_init0( blake2b_state *S )
    9797{
    9898  int i;
     
    423423int wc_InitBlake2b(Blake2b* b2b, word32 digestSz)
    424424{
     425    if (b2b == NULL){
     426        return -1;
     427    }
    425428    b2b->digestSz = digestSz;
    426429
Note: See TracChangeset for help on using the changeset viewer.