12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /*
- * Copyright 2023 The OpenSSL Project Authors. All Rights Reserved.
- *
- * Licensed under the Apache License 2.0 (the "License"). You may not use
- * this file except in compliance with the License. You can obtain a copy
- * in the file LICENSE in the source distribution or at
- * https://www.openssl.org/source/license.html
- */
- /*-
- * RISC-V 64 ZVKSED support for SM4 GCM.
- * This file is included by cipher_sm4_gcm_hw.c
- */
- static int rv64i_zvksed_sm4_xts_initkey(PROV_CIPHER_CTX *ctx,
- const unsigned char *key,
- size_t keylen)
- {
- PROV_SM4_XTS_CTX *xctx = (PROV_SM4_XTS_CTX *)ctx;
- OSSL_xts_stream_fn stream_fn = NULL;
- OSSL_xts_stream_fn stream_gb_fn = NULL;
- XTS_SET_KEY_FN(rv64i_zvksed_sm4_set_encrypt_key,
- rv64i_zvksed_sm4_set_decrypt_key,
- rv64i_zvksed_sm4_encrypt,
- rv64i_zvksed_sm4_decrypt,
- stream_fn, stream_gb_fn);
- return 1;
- }
- static const PROV_CIPHER_HW rv64i_zvksed_sm4_xts = {
- rv64i_zvksed_sm4_xts_initkey,
- NULL,
- cipher_hw_sm4_xts_copyctx
- };
- const PROV_CIPHER_HW *ossl_prov_cipher_hw_sm4_xts(size_t keybits)
- {
- if (RISCV_HAS_ZVKB_AND_ZVKSED() && riscv_vlen() >= 128)
- return &rv64i_zvksed_sm4_xts;
- else
- return &sm4_generic_xts;
- }
|