mirror of
https://github.com/openharmony/communication_t2stack.git
synced 2026-07-25 06:06:10 -04:00
9f56148dfc
Signed-off-by: Agrant <luojuheng@huawei.com>
73 lines
2.1 KiB
C
73 lines
2.1 KiB
C
/*
|
|
* Copyright (c) 2021 Huawei Device Co., Ltd.
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef NSTACKX_MBEDTLS_H
|
|
#define NSTACKX_MBEDTLS_H
|
|
|
|
#ifdef MBEDTLS_INCLUDED
|
|
#include "nstackx_common_header.h"
|
|
|
|
#include "mbedtls/gcm.h"
|
|
#include "mbedtls/ctr_drbg.h"
|
|
#include "mbedtls/entropy.h"
|
|
#include "mbedtls/chachapoly.h"
|
|
#include "mbedtls/version.h"
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define AES_128_KEY_LENGTH 16
|
|
#define AES_192_KEY_LENGTH 24
|
|
#define AES_256_KEY_LENGTH 32
|
|
#define GCM_IV_LENGTH 12
|
|
#define GCM_MAX_AAD_LENGTH 64
|
|
#define GCM_TAG_LENGTH 16
|
|
#define GCM_ADDED_LEN (GCM_IV_LENGTH + GCM_TAG_LENGTH)
|
|
#define KEY_BITS_UNIT 8
|
|
#define CHACHA20_KEY_LENGTH 32
|
|
#define CHACHA20_POLY1305_NAME "MBEDTLS_POLY1305_C"
|
|
|
|
typedef void MBEDTLS_CTX;
|
|
|
|
typedef struct {
|
|
uint8_t key[AES_256_KEY_LENGTH];
|
|
uint32_t keylen;
|
|
uint8_t iv[GCM_IV_LENGTH];
|
|
uint32_t ivLen;
|
|
uint8_t aad[GCM_MAX_AAD_LENGTH];
|
|
uint32_t aadLen;
|
|
uint8_t cipherType;
|
|
MBEDTLS_CTX *ctx;
|
|
} CryptPara;
|
|
|
|
NSTACKX_EXPORT uint32_t AesGcmEncrypt(const uint8_t *inBuff, uint32_t inLen, CryptPara *cryptPara,
|
|
uint8_t *outBuff, uint32_t outLen);
|
|
NSTACKX_EXPORT uint32_t AesGcmDecrypt(uint8_t *inBuff, uint32_t inLen, CryptPara *cryptPara,
|
|
uint8_t *outBuff, uint32_t outLen);
|
|
NSTACKX_EXPORT int32_t GetRandBytes(uint8_t *buf, uint32_t len);
|
|
NSTACKX_EXPORT uint8_t IsCryptoIncluded(void);
|
|
NSTACKX_EXPORT uint8_t QueryCipherSupportByName(char *name);
|
|
NSTACKX_EXPORT MBEDTLS_CTX ClearCryptCtx(MBEDTLS_CTX *ctx);
|
|
NSTACKX_EXPORT MBEDTLS_CTX *CreateCryptCtx(void);
|
|
NSTACKX_EXPORT uint8_t IsSupportHardwareAesNi(void);
|
|
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|