From 469fb582a381183e45f1cb567fad64c253938fba Mon Sep 17 00:00:00 2001 From: wuliaokanke Date: Tue, 6 Dec 2022 10:43:37 +0800 Subject: [PATCH] init kae2 engine --- kae_engine/.gitignore | 16 +++ kae_engine/AUTHORS | 0 kae_engine/ChangeLog | 0 kae_engine/LICENSE | 201 ++++++++++++++++++++++++++++++++ kae_engine/Makefile.am | 7 ++ kae_engine/NEWS | 0 kae_engine/README | 0 kae_engine/README.md | 149 +++++++++++++++++++++++ kae_engine/configure.ac | 30 +++++ kae_engine/docs/ReleaseNotes.md | 45 +++++++ kae_engine/docs/maintenance.md | 40 +++++++ kae_engine/test/sanity_test.sh | 173 +++++++++++++++++++++++++++ 12 files changed, 661 insertions(+) create mode 100644 kae_engine/.gitignore create mode 100644 kae_engine/AUTHORS create mode 100644 kae_engine/ChangeLog create mode 100644 kae_engine/LICENSE create mode 100644 kae_engine/Makefile.am create mode 100644 kae_engine/NEWS create mode 100644 kae_engine/README create mode 100644 kae_engine/README.md create mode 100644 kae_engine/configure.ac create mode 100644 kae_engine/docs/ReleaseNotes.md create mode 100644 kae_engine/docs/maintenance.md create mode 100644 kae_engine/test/sanity_test.sh diff --git a/kae_engine/.gitignore b/kae_engine/.gitignore new file mode 100644 index 0000000..d262623 --- /dev/null +++ b/kae_engine/.gitignore @@ -0,0 +1,16 @@ +build-aux +autom4te.cache +.deps +.libs +*.m4 +*.lo +*.la +*.o +*.tar.gz +Makefile +Makefile.in +config.status +config.log +configure +libtool +cscope.* diff --git a/kae_engine/AUTHORS b/kae_engine/AUTHORS new file mode 100644 index 0000000..e69de29 diff --git a/kae_engine/ChangeLog b/kae_engine/ChangeLog new file mode 100644 index 0000000..e69de29 diff --git a/kae_engine/LICENSE b/kae_engine/LICENSE new file mode 100644 index 0000000..360db8c --- /dev/null +++ b/kae_engine/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + https://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. \ No newline at end of file diff --git a/kae_engine/Makefile.am b/kae_engine/Makefile.am new file mode 100644 index 0000000..55fd400 --- /dev/null +++ b/kae_engine/Makefile.am @@ -0,0 +1,7 @@ +ACLOCAL_AMFLAGS = -I m4 + +if HAVE_CRYPTO +if HAVE_WD +SUBDIRS = src +endif +endif diff --git a/kae_engine/NEWS b/kae_engine/NEWS new file mode 100644 index 0000000..e69de29 diff --git a/kae_engine/README b/kae_engine/README new file mode 100644 index 0000000..e69de29 diff --git a/kae_engine/README.md b/kae_engine/README.md new file mode 100644 index 0000000..aa80eb0 --- /dev/null +++ b/kae_engine/README.md @@ -0,0 +1,149 @@ +OpenSSL engine for uadk +================= + +- [Prerequisites](#prerequisites) +- [Installation Instruction](#installation-instruction) + - [Build & Install OpenSSL](#build-&-install-openssl) + - [Build & Install UADK](#build-&-install-uadk) + - [Build & Install OpenSSL UADK engine](#build-&-install-openssl-uadk-engine) + - [Testing](#testing) +- [Install libraries to the temp folder](#Install-libraries-to-the-temp-folder) +- [Environment variable of uadk engin](#Environment-variable-of-uadk-engine) + +Prerequisites +============= +* CPU: aarch64 +* OpenSSL: 1.1.1f +* libnuma +* zlib + +Installation Instruction +======================== + +Build & Install OpenSSL +----------------------- + +``` + git clone https://github.com/openssl/openssl.git + cd openssl + git checkout -b OpenSSL_1_1_1f OpenSSL_1_1_1f + ./config -Wl,-rpath=/usr/local/lib + make + make test + sudo make install + openssl version +``` + +Build & Install UADK +-------------------- + +``` + git clone https://github.com/Linaro/uadk.git + cd uadk + ./cleanup.sh + ./autogen.sh + ./configure + make + sudo make install +``` +* If get error:"cannot find -lnuma", please install the libnuma-dev +* If get error:"fatal error: zlib.h: No such file or directory", please install zlib. + +Build & Install OpenSSL UADK Engine +----------------------------------- +``` + git clone https://github.com/Linaro/openssl-uadk.git + cd openssl-uadk + autoreconf -i + ./configure --libdir=/usr/local/lib/engines-1.1/ --enable-kae + make + sudo make install + + Option --enable-kae can be chosen to enable KAE for non-sva version +``` + +Testing +------- +``` + ./test/sanity_test.sh +``` + +Install libraries to the temp folder +==================================== + + Install all libraries to a temp folder like /tmp/build for debugging purposes.\ + If so, PKG_CONFIG_PATH has to be exported to ensure the env is set up correctly.\ + The pkg-config can be used for double-checking env. + +``` + $ cd openssl + $ ./config --prefix=/tmp/build + $ make; make install + + $ export PKG_CONFIG_PATH=/tmp/build/lib/pkgconfig/ + $ pkg-config libcrypto --libs + -L/tmp/build/lib -lcrypto + + $ cd uadk + $ ./autogen.sh + $ ./configure --prefix=/tmp/build + $ make; make install + + $ pkg-config libwd --libs + -L/tmp/build/lib -lwd + + $ cd openssl-uadk + $ autoreconf + $ ./configure --prefix=/tmp/build + $ make; make install + + $ openssl engine -c /tmp/build/lib/uadk_engine.so + $ ./test/sanity_test.sh /tmp/build/lib/uadk_engine.so + +``` + +Environment variable of uadk engine +=================================== +Introduction +------------ +Through the environment variable function, users can configure the number of\ +queue resources that can be applied by different algorithms by setting the\ +algorithm switch in the openssl.cnf file. + +Usage +----- +#. Firstly, modify the openssl.cnf file, add the following settings at the beginning of this file: + +``` +openssl_cnf = openssl_def +[openssl_def] +engines = engine_section +[engine_section] +uadk_engine = uadk_section +[uadk_section] +UADK_CMD_ENABLE_RSA_ENV = 1 +UADK_CMD_ENABLE_DH_ENV = 1 +UADK_CMD_ENABLE_CIPHER_ENV = 1 +UADK_CMD_ENABLE_DIGEST_ENV = 1 +UADK_CMD_ENABLE_ECC_ENV = 1 +``` +Note: +* The number 1 for enable environment variable, and 0 for disable environment variable. +* By default, you can find openssl.cnf file under /usr/local/ssl/ path. + +#. Secondly, use "export" command to set queue number. +For example, +``` +export WD_RSA_CTX_NUM="sync:2@0,async:4@0" +export WD_DH_CTX_NUM="sync:2@0,async:4@0" +export WD_CIPHER_CTX_NUM="sync:2@2,async:4@2" +export WD_DIGEST_CTX_NUM="sync:2@2,async:4@2" +export WD_ECC_CTX_NUM="sync:2@0,async:4@0" +``` +Note: +* You can write these commands into ~/.bashrc file and source it, or just input temporarily. +* "sync" indicates synchronous mode, "async" indicates asynchronous mode. +* "sync:2@0" means request 2 queues on numa-0 node, under synchronous mode. +* "async:2@0" means request 2 queues on numa-0 node, under asynchronous mode. +* If you do not perform the second step, the engine will use the default\ + setting:"sync:2@0, async:2@0" to request queues from hardware. diff --git a/kae_engine/configure.ac b/kae_engine/configure.ac new file mode 100644 index 0000000..c31e099 --- /dev/null +++ b/kae_engine/configure.ac @@ -0,0 +1,30 @@ +AC_PREREQ([2.69]) +AC_INIT([openssl-uadk], [1.0.1]) +AC_CONFIG_SRCDIR([src/e_uadk.c]) +AM_INIT_AUTOMAKE([1.10 no-define]) + +AC_CONFIG_MACRO_DIR([m4]) +AC_CONFIG_HEADERS([config.h]) + +AC_PROG_CC +AC_PROG_LIBTOOL +AM_PROG_LIBTOOL + +AC_ARG_ENABLE(kae, + AS_HELP_STRING([--enable-kae],[Enable kae support])) +AC_SUBST(enable_kae) +AM_CONDITIONAL([WD_KAE], [test "$enable_kae" = "yes"]) + +AC_CHECK_HEADERS([openssl/engine.h]) + +PKG_CHECK_MODULES(WD, libwd libwd_crypto, [with_wd=yes], [with_wd=no]) +AM_CONDITIONAL(HAVE_WD, [test "$with_wd" != "no"]) + +PKG_CHECK_MODULES(libcrypto, libcrypto < 3.0 libcrypto >= 1.1, + [with_crypto=yes], [with_crypto=no]) +AM_CONDITIONAL(HAVE_CRYPTO, test "$with_crypto" != "no") + +AC_CONFIG_FILES([ + Makefile + src/Makefile]) +AC_OUTPUT diff --git a/kae_engine/docs/ReleaseNotes.md b/kae_engine/docs/ReleaseNotes.md new file mode 100644 index 0000000..f760db8 --- /dev/null +++ b/kae_engine/docs/ReleaseNotes.md @@ -0,0 +1,45 @@ + +# UADK engine Release Pre v1.1 November 2022 + +## New Features + +- UADK engine consists of five sub-modules: RSA, DH, ECC, Cipher, and Digest.\ + After hardware accelerators from different vendors are registered to UADK general framework,\ + users can use the OpenSSL command line tools or OpenSSL standard interfaces through UADK engine,\ + and finish the computing task with the hardware accelerators.\ + The engine ID is 'uadk_engine'. + +- The main features of UADK engine are as follows: +- RSA sub-module.\ + Supports RSA algorithm of 1024/2048/3072/4096-bits key size with standard mode and CRT mode.\ + Provides key generation, asymmetric encryption and decryption, and digital signature functions. +- DH sub-module.\ + Supports DH algorithms of 768/1024/1536/2048/3072/4096-bits key size.\ + Provides key exchange functions. +- ECC sub-module.\ + Supports elliptic-curve cryptography.\ + Provide ECDH/X25519/X448 key exchange, ECDSA elliptic curve digital signature,\ + SM2 digital signature and SM2 asymmetric encryption and decryption functions. +- Cipher sub-module.\ + Supports block cipher algorithms, including AES algorithm with CBC/ECB/CTR/XTS mode,\ + SM4 algorithm with CTR/CBC/ECB/OFB/CFB mode, and 3DES algorithm.\ + Provides symmetric encryption and decryption functions. +- Digest sub-module.\ + Supports MD5/SM3/SHA1/SHA224/SHA256/SHA384/SHA512 algorithms.\ + Provides generating message digest functions and supports digest multiple updates.\ +- Supports switching to OpenSSL software method in abnormal cases. +- Supports configuring the engine with an environment variable. + +## Fixes + +- Fixed uadk engine compatibility problem when using a different mode of UADK. +- Fixed the init status of SM2 and decryption check. +- Fixed the init operation sequence of ECC-related algorithms. +- Improved the digest performance by about 5%. +- Added timeout protection mechanism when doing an asynchronous job. +- Fixed the repeatedly initializing problem, initializing resources only once. + +## Working combination + +- UADK v2.3.28 +- OpenSSL 1.1.1f diff --git a/kae_engine/docs/maintenance.md b/kae_engine/docs/maintenance.md new file mode 100644 index 0000000..e4bcd3e --- /dev/null +++ b/kae_engine/docs/maintenance.md @@ -0,0 +1,40 @@ + +# Contributor's Guide + +## Getting Started + +Clone UADK from [Github](https://github.com/Linaro/uadk). + +Clone openssl-uadk from [Github](https://github.com/Linaro/openssl-uadk). + +## License + +Adopt Apache License 2.0. + +## Coding Style + +Adopt linux kernel coding style, so check with linux/scripts/checkpatch.pl + +## Making Changes + +``` +Make patches +linux/scripts/checkpatch.pl *.patch +sudo test/sanity_test.sh +``` + +## Release +Likely two releases each year in May and November.\ +Tag {x}.{y} is for release, while .{z} is for the major bug fixes.\ +In the meantime, ReleaseNotes is required to describe release contents.\ +ReleasesNotes:\ +Features:\ +Fixes: + +## Main maintainers + +``` +Zhangfei Gao +Zhou Wang +Zhiqi Song +``` diff --git a/kae_engine/test/sanity_test.sh b/kae_engine/test/sanity_test.sh new file mode 100644 index 0000000..bdedc15 --- /dev/null +++ b/kae_engine/test/sanity_test.sh @@ -0,0 +1,173 @@ +#!/bin/bash + +sudo chmod 666 /dev/hisi_* + +if [ ! -n "$1" ]; then + engine_id=uadk_engine +else + engine_id=$1 +fi + +algs=$(openssl engine -c $engine_id) +echo $algs + +#digest +if [[ $algs =~ "MD5" ]]; then + echo "testing MD5" + openssl speed -engine $engine_id -evp md5 + openssl speed -engine $engine_id -async_jobs 1 -evp md5 +fi + +if [[ $algs =~ "SM3" ]]; then + echo "testing SM3" + openssl speed -engine $engine_id -evp sm3 + openssl speed -engine $engine_id -async_jobs 1 -evp sm3 +fi + +if [[ $algs =~ "SM2" ]]; then + echo "testing SM2" + openssl speed -engine $engine_id -evp sm2 + openssl speed -engine $engine_id -async_jobs 1 -evp sm2 +fi + +if [[ $algs =~ "SHA" ]]; then + echo "testing SHA" + openssl speed -engine $engine_id -evp sha1 + openssl speed -engine $engine_id -async_jobs 1 -evp sha1 + openssl speed -engine $engine_id -evp sha224 + openssl speed -engine $engine_id -async_jobs 1 -evp sha224 + openssl speed -engine $engine_id -evp sha256 + openssl speed -engine $engine_id -async_jobs 1 -evp sha256 + openssl speed -engine $engine_id -evp sha384 + openssl speed -engine $engine_id -async_jobs 1 -evp sha384 + openssl speed -engine $engine_id -evp sha512 + openssl speed -engine $engine_id -async_jobs 1 -evp sha512 +fi + +#cipher + +if [[ $algs =~ "AES" ]]; then + echo "testing AES" + openssl speed -engine $engine_id -evp aes-128-cbc + openssl speed -engine $engine_id -async_jobs 1 -evp aes-128-cbc + openssl speed -engine $engine_id -evp aes-192-cbc + openssl speed -engine $engine_id -async_jobs 1 -evp aes-192-cbc + openssl speed -engine $engine_id -evp aes-256-cbc + openssl speed -engine $engine_id -async_jobs 1 -evp aes-256-cbc + openssl speed -engine $engine_id -evp aes-128-ecb + openssl speed -engine $engine_id -async_jobs 1 -evp aes-128-ecb + openssl speed -engine $engine_id -evp aes-192-ecb + openssl speed -engine $engine_id -async_jobs 1 -evp aes-192-ecb + openssl speed -engine $engine_id -evp aes-256-ecb + openssl speed -engine $engine_id -async_jobs 1 -evp aes-256-ecb + openssl speed -engine $engine_id -evp aes-128-xts + openssl speed -engine $engine_id -async_jobs 1 -evp aes-128-xts + openssl speed -engine $engine_id -evp aes-256-xts + openssl speed -engine $engine_id -async_jobs 1 -evp aes-256-xts + openssl speed -engine $engine_id -evp aes-128-ctr + openssl speed -engine $engine_id -async_jobs 1 -evp aes-128-ctr + openssl speed -engine $engine_id -evp aes-192-ctr + openssl speed -engine $engine_id -async_jobs 1 -evp aes-192-ctr + openssl speed -engine $engine_id -evp aes-256-ctr + openssl speed -engine $engine_id -async_jobs 1 -evp aes-256-ctr +fi + +if [[ $algs =~ "SM4-CBC" ]]; then + echo "testing SM4-CBC" + openssl speed -engine $engine_id -evp sm4-cbc + openssl speed -engine $engine_id -async_jobs 1 -evp sm4-cbc +fi + +if [[ $algs =~ "SM4-ECB" ]]; then + echo "testing SM4-ECB" + openssl speed -engine $engine_id -evp sm4-ecb + openssl speed -engine $engine_id -async_jobs 1 -evp sm4-ecb +fi + +if [[ $algs =~ "DES" ]]; then + echo "testing DES" + openssl speed -engine $engine_id -evp des-ede3-cbc + openssl speed -engine $engine_id -async_jobs 1 -evp des-ede3-cbc + openssl speed -engine $engine_id -evp des-ede3-ecb + openssl speed -engine $engine_id -async_jobs 1 -evp des-ede3-ecb +fi + +#rsa +if [[ $algs =~ "RSA" ]]; then + echo "testing RSA" + openssl speed -elapsed -engine $engine_id rsa1024 + openssl speed -elapsed -engine $engine_id -async_jobs 1 rsa1024 + openssl speed -elapsed -engine $engine_id rsa2048 + openssl speed -elapsed -engine $engine_id -async_jobs 1 rsa2048 + openssl speed -elapsed -engine $engine_id rsa4096 + openssl speed -elapsed -engine $engine_id -async_jobs 1 rsa4096 +fi + +#ecdsa only supported in HW_V3 or later +if [[ $algs =~ "id-ecPublicKey" ]]; then + echo "testing ECDSA" + openssl speed -elapsed -engine $engine_id ecdsap224 + openssl speed -elapsed -engine $engine_id -async_jobs 1 ecdsap224 + openssl speed -elapsed -engine $engine_id ecdsap256 + openssl speed -elapsed -engine $engine_id -async_jobs 1 ecdsap256 + openssl speed -elapsed -engine $engine_id ecdsap384 + openssl speed -elapsed -engine $engine_id -async_jobs 1 ecdsap384 + openssl speed -elapsed -engine $engine_id ecdsap521 + openssl speed -elapsed -engine $engine_id -async_jobs 1 ecdsap521 +fi + +#X25519 only supported in HW_V3 or later +if [[ $algs =~ "X25519" ]]; then + echo "testing X25519" + openssl speed -elapsed -engine $engine_id ecdhx25519 + openssl speed -elapsed -engine $engine_id -async_jobs 1 ecdhx25519 +fi + +#X448 only supported in HW_V3 or later +if [[ $algs =~ "X448" ]]; then + echo "testing X448" + openssl speed -elapsed -engine $engine_id ecdhx448 + openssl speed -elapsed -engine $engine_id -async_jobs 1 ecdhx448 +fi + +#ecdh only supported in HW_V3 or later +if [[ $algs =~ "id-ecPublicKey" ]]; then + echo "testing ECDH" + openssl speed -elapsed -engine $engine_id ecdhp192 + openssl speed -elapsed -engine $engine_id -async_jobs 1 ecdhp192 + openssl speed -elapsed -engine $engine_id ecdhp224 + openssl speed -elapsed -engine $engine_id -async_jobs 1 ecdhp224 + openssl speed -elapsed -engine $engine_id ecdhp256 + openssl speed -elapsed -engine $engine_id -async_jobs 1 ecdhp256 + openssl speed -elapsed -engine $engine_id ecdhp384 + openssl speed -elapsed -engine $engine_id -async_jobs 1 ecdhp384 + openssl speed -elapsed -engine $engine_id ecdhp521 + openssl speed -elapsed -engine $engine_id -async_jobs 1 ecdhp521 + openssl speed -elapsed -engine $engine_id ecdhbrp384r1 + openssl speed -elapsed -engine $engine_id -async_jobs 1 ecdhbrp384r1 +fi + +#DH +if [[ $algs =~ "DH" ]]; then + echo "testing DH" + #1. Generate global public parameters, and save them in the file dhparam.pem: + openssl dhparam -out dhparam.pem 2048 + + #2. Generate own private key: + openssl genpkey -paramfile dhparam.pem -out privatekey1.pem + openssl genpkey -paramfile dhparam.pem -out privatekey2.pem + + #3. Generate public key: + openssl pkey -in privatekey1.pem -pubout -out publickey1.pem -engine $engine_id + openssl pkey -in privatekey2.pem -pubout -out publickey2.pem -engine $engine_id + + #4. After exchanging public key, each user can derive the shared secret: + openssl pkeyutl -derive -inkey privatekey1.pem -peerkey publickey2.pem -out secret1.bin -engine $engine_id + openssl pkeyutl -derive -inkey privatekey2.pem -peerkey publickey1.pem -out secret2.bin -engine $engine_id + + #5. Check secret1.bin and secret2.bin: + cmp secret1.bin secret2.bin + xxd secret1.bin + xxd secret2.bin + #secret1.bin and secret2.bin should be same. +fi -- Gitee