Home
last modified time | relevance | path

Searched refs:psha256Ctxt (Results 1 – 2 of 2) sorted by relevance

/hal_atmel-3.5.0-3.4.0/asf/common/components/wifi/winc1500/driver/include/
Dm2m_crypto.h145 sint8 m2m_crypto_sha256_hash_init(tstrM2mSha256Ctxt *psha256Ctxt);
170 sint8 m2m_crypto_sha256_hash_update(tstrM2mSha256Ctxt *psha256Ctxt, uint8 *pu8Data, uint16 u16DataL…
188 sint8 m2m_crypto_sha256_hash_finish(tstrM2mSha256Ctxt *psha256Ctxt, uint8 *pu8Sha256Digest);
/hal_atmel-3.5.0-3.4.0/asf/common/components/wifi/winc1500/driver/source/
Dm2m_crypto.c830 sint8 m2m_crypto_sha256_hash_init(tstrM2mSha256Ctxt *psha256Ctxt) in m2m_crypto_sha256_hash_init() argument
833 if((psha256Ctxt != NULL)&&(!gstrCryptoCtxt.u8CryptoBusy)) in m2m_crypto_sha256_hash_init()
835 …M_REQ_GROUP_CRYPTO,M2M_CRYPTO_REQ_SHA256_INIT|M2M_REQ_DATA_PKT,(uint8*)psha256Ctxt,sizeof(tstrM2mS… in m2m_crypto_sha256_hash_init()
856 sint8 m2m_crypto_sha256_hash_update(tstrM2mSha256Ctxt *psha256Ctxt, uint8 *pu8Data, uint16 u16DataL… in m2m_crypto_sha256_hash_update() argument
859 …if((!gstrCryptoCtxt.u8CryptoBusy) && (psha256Ctxt != NULL) && (pu8Data != NULL) && (u16DataLength … in m2m_crypto_sha256_hash_update()
861 …REQ_GROUP_CRYPTO,M2M_CRYPTO_REQ_SHA256_UPDATE|M2M_REQ_DATA_PKT,(uint8*)psha256Ctxt,sizeof(tstrM2mS… in m2m_crypto_sha256_hash_update()
880 sint8 m2m_crypto_sha256_hash_finish(tstrM2mSha256Ctxt *psha256Ctxt, uint8 *pu8Sha256Digest) in m2m_crypto_sha256_hash_finish() argument
883 if((!gstrCryptoCtxt.u8CryptoBusy) && (psha256Ctxt != NULL) && (pu8Sha256Digest != NULL)) in m2m_crypto_sha256_hash_finish()
886 …REQ_GROUP_CRYPTO,M2M_CRYPTO_REQ_SHA256_FINSIH|M2M_REQ_DATA_PKT,(uint8*)psha256Ctxt,sizeof(tstrM2mS… in m2m_crypto_sha256_hash_finish()