| // SPDX-License-Identifier: BSD-2-Clause |
| /* |
| * Copyright (c) 2019 Huawei Technologies Co., Ltd |
| */ |
| |
| #include <assert.h> |
| #include <crypto/crypto.h> |
| #include <crypto/crypto_impl.h> |
| #include <stdlib.h> |
| #include <string_ext.h> |
| #include <tee_api_types.h> |
| #include <util.h> |
| |
| #include "sm4.h" |
| |
| struct sm4_ecb_ctx { |
| struct crypto_cipher_ctx ctx; |
| struct sm4_context state; |
| }; |
| |
| static const struct crypto_cipher_ops sm4_ecb_ops; |
| |
| static struct sm4_ecb_ctx *to_sm4_ecb_ctx(struct crypto_cipher_ctx *ctx) |
| { |
| assert(ctx && ctx->ops == &sm4_ecb_ops); |
| |
| return container_of(ctx, struct sm4_ecb_ctx, ctx); |
| } |
| |
| static TEE_Result sm4_ecb_init(struct crypto_cipher_ctx *ctx, |
| TEE_OperationMode mode, const uint8_t *key1, |
| size_t key1_len, const uint8_t *key2 __unused, |
| size_t key2_len __unused, |
| const uint8_t *iv __unused, |
| size_t iv_len __unused) |
| { |
| struct sm4_ecb_ctx *c = to_sm4_ecb_ctx(ctx); |
| |
| if (key1_len != 16) |
| return TEE_ERROR_BAD_STATE; |
| |
| if (mode == TEE_MODE_ENCRYPT) |
| sm4_setkey_enc(&c->state, key1); |
| else |
| sm4_setkey_dec(&c->state, key1); |
| |
| return TEE_SUCCESS; |
| } |
| |
| static TEE_Result sm4_ecb_update(struct crypto_cipher_ctx *ctx, |
| bool last_block __unused, |
| const uint8_t *data, size_t len, uint8_t *dst) |
| { |
| struct sm4_ecb_ctx *c = to_sm4_ecb_ctx(ctx); |
| |
| sm4_crypt_ecb(&c->state, len, data, dst); |
| |
| return TEE_SUCCESS; |
| } |
| |
| static void sm4_ecb_final(struct crypto_cipher_ctx *ctx) |
| { |
| struct sm4_ecb_ctx *c = to_sm4_ecb_ctx(ctx); |
| |
| memzero_explicit(&c->state, sizeof(c->state)); |
| } |
| |
| static void sm4_ecb_free_ctx(struct crypto_cipher_ctx *ctx) |
| { |
| free(to_sm4_ecb_ctx(ctx)); |
| } |
| |
| static void sm4_ecb_copy_state(struct crypto_cipher_ctx *dst_ctx, |
| struct crypto_cipher_ctx *src_ctx) |
| { |
| struct sm4_ecb_ctx *src = to_sm4_ecb_ctx(src_ctx); |
| struct sm4_ecb_ctx *dst = to_sm4_ecb_ctx(dst_ctx); |
| |
| dst->state = src->state; |
| } |
| |
| static const struct crypto_cipher_ops sm4_ecb_ops = { |
| .init = sm4_ecb_init, |
| .update = sm4_ecb_update, |
| .final = sm4_ecb_final, |
| .free_ctx = sm4_ecb_free_ctx, |
| .copy_state = sm4_ecb_copy_state, |
| }; |
| |
| TEE_Result crypto_sm4_ecb_alloc_ctx(struct crypto_cipher_ctx **ctx_ret) |
| { |
| struct sm4_ecb_ctx *c = NULL; |
| |
| c = calloc(1, sizeof(*c)); |
| if (!c) |
| return TEE_ERROR_OUT_OF_MEMORY; |
| |
| c->ctx.ops = &sm4_ecb_ops; |
| *ctx_ret = &c->ctx; |
| |
| return TEE_SUCCESS; |
| } |