mirror of
https://github.com/openssl/openssl.git
synced 2025-03-31 20:10:45 +08:00
riscv: Provide vector crypto implementation of AES-ECB mode.
This patch provides stream and multi-block implementations for AES-128-ECB, AES-192-ECB, and AES-256-ECB to accelerate AES-ECB. Also, refactor functions to share the same variable declaration in aes-riscv64-zvkned.pl. Signed-off-by: Phoebe Chen <phoebe.chen@sifive.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Hugo Landau <hlandau@openssl.org> (Merged from https://github.com/openssl/openssl/pull/21923)
This commit is contained in:
parent
1c25bc2e3f
commit
751a22194e
File diff suppressed because it is too large
Load Diff
@ -93,6 +93,12 @@ static int cipher_hw_rv64i_zvkned_initkey(PROV_CIPHER_CTX *dat,
|
||||
if (RISCV_HAS_ZVKB()) {
|
||||
dat->stream.ctr = (ctr128_f) rv64i_zvkb_zvkned_ctr32_encrypt_blocks;
|
||||
}
|
||||
} else if (dat->mode == EVP_CIPH_ECB_MODE) {
|
||||
if (dat->enc) {
|
||||
dat->stream.ecb = (ecb128_f) rv64i_zvkned_ecb_encrypt;
|
||||
} else {
|
||||
dat->stream.ecb = (ecb128_f) rv64i_zvkned_ecb_decrypt;
|
||||
}
|
||||
}
|
||||
|
||||
/* Zvkned supports aes-128/192/256 encryption and decryption. */
|
||||
|
Loading…
x
Reference in New Issue
Block a user