Searched refs:mContextSize (Results 1 – 6 of 6) sorted by relevance
/openthread-3.6.0/src/core/crypto/ |
D | crypto_platform.cpp | 94 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 …]
|
D | aes_ecb.cpp | 44 mContext.mContextSize = sizeof(mContextStorage); in AesEcb()
|
D | hkdf_sha256.cpp | 49 mContext.mContextSize = sizeof(mContextStorage); in HkdfSha256()
|
D | sha256.cpp | 46 mContext.mContextSize = sizeof(mContextStorage); in Sha256()
|
D | hmac_sha256.cpp | 45 mContext.mContextSize = sizeof(mContextStorage); in HmacSha256()
|
/openthread-3.6.0/include/openthread/platform/ |
D | crypto.h | 133 uint16_t mContextSize; ///< The length of the context in bytes. member
|