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

    r352 r372  
    2020 */
    2121
     22/*!
     23    \file wolfssl/wolfcrypt/dsa.h
     24*/
    2225
    2326#ifndef WOLF_CRYPT_DSA_H
     
    7578#endif
    7679
     80/* raw export functions */
     81WOLFSSL_API int wc_DsaImportParamsRaw(DsaKey* dsa, const char* p,
     82                                      const char* q, const char* g);
     83WOLFSSL_API int wc_DsaImportParamsRawCheck(DsaKey* dsa, const char* p,
     84                                      const char* q, const char* g,
     85                                      int trusted, WC_RNG* rng);
     86WOLFSSL_API int wc_DsaExportParamsRaw(DsaKey* dsa, byte* p, word32* pSz,
     87                                      byte* q, word32* qSz, byte* g,
     88                                      word32* gSz);
     89WOLFSSL_API int wc_DsaExportKeyRaw(DsaKey* dsa, byte* x, word32* xSz, byte* y,
     90                                   word32* ySz);
    7791#ifdef __cplusplus
    7892    } /* extern "C" */
Note: See TracChangeset for help on using the changeset viewer.