mirror of https://github.com/ARMmbed/mbed-os.git
120 lines
3.3 KiB
C
120 lines
3.3 KiB
C
/*
|
|
* mbed Microcontroller Library
|
|
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
|
|
* Copyright (C) 2019 Cypress Semiconductor Corporation
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
/**
|
|
* \file sha256_alt.c
|
|
* \version 1.0
|
|
*
|
|
* \brief Source file - wrapper for mbedtls SHA256 HW acceleration
|
|
*
|
|
*/
|
|
|
|
#if defined(MBEDTLS_CONFIG_FILE)
|
|
#include MBEDTLS_CONFIG_FILE
|
|
#else
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#if defined(MBEDTLS_SHA256_C)
|
|
|
|
#include "mbedtls/sha256.h"
|
|
#include "mbedtls/platform_util.h"
|
|
|
|
#include <string.h>
|
|
|
|
#if defined(MBEDTLS_SHA256_ALT)
|
|
|
|
/* Parameter validation macros based on platform_util.h */
|
|
#define SHA256_VALIDATE_RET(cond) \
|
|
MBEDTLS_INTERNAL_VALIDATE_RET( cond, MBEDTLS_ERR_SHA256_BAD_INPUT_DATA )
|
|
#define SHA256_VALIDATE(cond) MBEDTLS_INTERNAL_VALIDATE( cond )
|
|
|
|
void mbedtls_sha256_init( mbedtls_sha256_context *ctx )
|
|
{
|
|
SHA256_VALIDATE( ctx != NULL );
|
|
|
|
cy_hw_sha_init(ctx, sizeof( mbedtls_sha256_context ));
|
|
}
|
|
|
|
void mbedtls_sha256_free( mbedtls_sha256_context *ctx )
|
|
{
|
|
if (ctx == NULL)
|
|
return;
|
|
|
|
cy_hw_sha_free(ctx, sizeof( mbedtls_sha256_context ));
|
|
}
|
|
|
|
void mbedtls_sha256_clone( mbedtls_sha256_context *dst, const mbedtls_sha256_context *src )
|
|
{
|
|
SHA256_VALIDATE( dst != NULL );
|
|
SHA256_VALIDATE( src != NULL );
|
|
|
|
cy_hw_sha_clone(dst, src, sizeof(mbedtls_sha256_context), &dst->hashState, &dst->shaBuffers);
|
|
}
|
|
|
|
/*
|
|
* SHA-256 context setup
|
|
*/
|
|
int mbedtls_sha256_starts_ret( mbedtls_sha256_context *ctx, int is224)
|
|
{
|
|
SHA256_VALIDATE_RET( ctx != NULL );
|
|
SHA256_VALIDATE_RET( is224 == 0 || is224 == 1 );
|
|
|
|
return cy_hw_sha_start(&ctx->obj, &ctx->hashState,
|
|
( is224 == 0 ) ? CY_CRYPTO_MODE_SHA256 : CY_CRYPTO_MODE_SHA224,
|
|
&ctx->shaBuffers);
|
|
}
|
|
|
|
/*
|
|
* SHA-256 process buffer
|
|
*/
|
|
int mbedtls_sha256_update_ret( mbedtls_sha256_context *ctx, const unsigned char *input, size_t ilen )
|
|
{
|
|
SHA256_VALIDATE_RET( ctx != NULL );
|
|
SHA256_VALIDATE_RET( ilen == 0 || input != NULL );
|
|
|
|
if (ilen == 0)
|
|
return (0);
|
|
|
|
return cy_hw_sha_update(&ctx->obj, &ctx->hashState, (uint8_t *)input, ilen);
|
|
}
|
|
|
|
/*
|
|
* SHA-256 final digest
|
|
*/
|
|
int mbedtls_sha256_finish_ret( mbedtls_sha256_context *ctx, unsigned char output[32] )
|
|
{
|
|
SHA256_VALIDATE_RET( ctx != NULL );
|
|
SHA256_VALIDATE_RET( (unsigned char *)output != NULL );
|
|
|
|
return cy_hw_sha_finish(&ctx->obj, &ctx->hashState, output);
|
|
}
|
|
|
|
int mbedtls_internal_sha256_process( mbedtls_sha256_context *ctx, const unsigned char data[64] )
|
|
{
|
|
SHA256_VALIDATE_RET( ctx != NULL );
|
|
SHA256_VALIDATE_RET( (const unsigned char *)data != NULL );
|
|
|
|
return cy_hw_sha_process(&ctx->obj, &ctx->hashState, (unsigned char *)data);
|
|
}
|
|
|
|
#endif /* MBEDTLS_SHA256_ALT */
|
|
|
|
#endif /* MBEDTLS_SHA256_C */
|