Home
last modified time | relevance | path

Searched refs:mContextSize (Results 1 – 6 of 6) sorted by relevance

/openthread-3.6.0/src/core/crypto/
Dcrypto_platform.cpp94 VerifyOrExit(aContext->mContextSize >= sizeof(mbedtls_aes_context), error = kErrorFailed); in otPlatCryptoAesInit()
110 VerifyOrExit(aContext->mContextSize >= sizeof(mbedtls_aes_context), error = kErrorFailed); in otPlatCryptoAesSetKey()
126 VerifyOrExit(aContext->mContextSize >= sizeof(mbedtls_aes_context), error = kErrorFailed); in otPlatCryptoAesEncrypt()
141 VerifyOrExit(aContext->mContextSize >= sizeof(mbedtls_aes_context), error = kErrorFailed); in otPlatCryptoAesFree()
160 VerifyOrExit(aContext->mContextSize >= sizeof(mbedtls_md_context_t), error = kErrorFailed); in otPlatCryptoHmacSha256Init()
177 VerifyOrExit(aContext->mContextSize >= sizeof(mbedtls_md_context_t), error = kErrorFailed); in otPlatCryptoHmacSha256Deinit()
193 VerifyOrExit(aContext->mContextSize >= sizeof(mbedtls_md_context_t), error = kErrorFailed); in otPlatCryptoHmacSha256Start()
208 VerifyOrExit(aContext->mContextSize >= sizeof(mbedtls_md_context_t), error = kErrorFailed); in otPlatCryptoHmacSha256Update()
226 VerifyOrExit(aContext->mContextSize >= sizeof(mbedtls_md_context_t), error = kErrorFailed); in otPlatCryptoHmacSha256Finish()
240 VerifyOrExit(aContext->mContextSize >= sizeof(HmacSha256::Hash), error = kErrorFailed); in otPlatCryptoHkdfInit()
[all …]
Daes_ecb.cpp44 mContext.mContextSize = sizeof(mContextStorage); in AesEcb()
Dhkdf_sha256.cpp49 mContext.mContextSize = sizeof(mContextStorage); in HkdfSha256()
Dsha256.cpp46 mContext.mContextSize = sizeof(mContextStorage); in Sha256()
Dhmac_sha256.cpp45 mContext.mContextSize = sizeof(mContextStorage); in HmacSha256()
/openthread-3.6.0/include/openthread/platform/
Dcrypto.h133 uint16_t mContextSize; ///< The length of the context in bytes. member