[clang-format] apply v14 changes (#8490)

This commit is contained in:
Jonathan Hui
2022-12-07 16:23:20 -08:00
parent 351298e85f
commit 9c467a23ae
373 changed files with 4176 additions and 2841 deletions
+7 -7
View File
@@ -60,15 +60,15 @@ void otCryptoHmacSha256(const otCryptoKey *aKey, const uint8_t *aBuf, uint16_t a
void otCryptoAesCcm(const otCryptoKey *aKey,
uint8_t aTagLength,
const void * aNonce,
const void *aNonce,
uint8_t aNonceLength,
const void * aHeader,
const void *aHeader,
uint32_t aHeaderLength,
void * aPlainText,
void * aCipherText,
void *aPlainText,
void *aCipherText,
uint32_t aLength,
bool aEncrypt,
void * aTag)
void *aTag)
{
AesCcm aesCcm;
@@ -92,8 +92,8 @@ void otCryptoAesCcm(const otCryptoKey *aKey,
#if OPENTHREAD_CONFIG_ECDSA_ENABLE
otError otCryptoEcdsaSign(uint8_t * aOutput,
uint16_t * aOutputLength,
otError otCryptoEcdsaSign(uint8_t *aOutput,
uint16_t *aOutputLength,
const uint8_t *aInputHash,
uint16_t aInputHashLength,
const uint8_t *aPrivateKey,