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/pwdbased.h

    r352 r372  
    2020 */
    2121
     22/*!
     23    \file wolfssl/wolfcrypt/pwdbased.h
     24*/
    2225
    2326#ifndef WOLF_CRYPT_PWDBASED_H
     
    2831#ifndef NO_PWDBASED
    2932
    30 #ifndef NO_MD5
    31     #include <wolfssl/wolfcrypt/md5.h>       /* for hash type */
    32 #endif
    33 
    34 #include <wolfssl/wolfcrypt/sha.h>
    3533
    3634#ifdef __cplusplus
     
    4240 * wolfssl/wolfcrypt/asn.h line 173 in enum Oid_Types
    4341 */
     42WOLFSSL_API int wc_PBKDF1_ex(byte* key, int keyLen, byte* iv, int ivLen,
     43                      const byte* passwd, int passwdLen,
     44                      const byte* salt, int saltLen, int iterations,
     45                      int hashType, void* heap);
    4446WOLFSSL_API int wc_PBKDF1(byte* output, const byte* passwd, int pLen,
    4547                      const byte* salt, int sLen, int iterations, int kLen,
     
    6163#endif
    6264
    63 /* helper functions */
    64 WOLFSSL_LOCAL int GetDigestSize(int typeH);
    65 WOLFSSL_LOCAL int GetPKCS12HashSizes(int typeH, word32* v, word32* u);
    66 WOLFSSL_LOCAL int DoPKCS12Hash(int typeH, byte* buffer, word32 totalLen,
    67                                byte* Ai, word32 u, int iterations);
    68 
    6965
    7066#ifdef __cplusplus
Note: See TracChangeset for help on using the changeset viewer.