Message ID | 20250429095814.1881-1-gmuthukrishn@marvell.com (mailing list archive) |
---|---|
State | Accepted |
Delegated to: | akhil goyal |
Headers | |
Series | crypto/virtio: support RSA 8K mod ops | |
Checks
Context | Check | Description |
---|---|---|
ci/checkpatch | success | coding style OK |
ci/loongarch-compilation | success | Compilation OK |
ci/loongarch-unit-testing | success | Unit Testing PASS |
ci/Intel-compilation | success | Compilation OK |
ci/github-robot: build | success | github build: passed |
ci/iol-mellanox-Functional | success | Functional Testing PASS |
ci/iol-marvell-Functional | success | Functional Testing PASS |
ci/iol-broadcom-Performance | success | Performance Testing PASS |
ci/iol-mellanox-Performance | success | Performance Testing PASS |
ci/iol-unit-arm64-testing | success | Testing PASS |
ci/iol-abi-testing | success | Testing PASS |
ci/iol-sample-apps-testing | success | Testing PASS |
ci/iol-unit-amd64-testing | success | Testing PASS |
ci/iol-compile-amd64-testing | success | Testing PASS |
ci/iol-intel-Performance | success | Performance Testing PASS |
ci/iol-intel-Functional | success | Functional Testing PASS |
ci/aws-unit-testing | success | Unit Testing PASS |
ci/intel-Testing | success | Testing PASS |
ci/intel-Functional | success | Functional PASS |
Commit Message
diff --git a/drivers/crypto/virtio/virtio_cryptodev.h b/drivers/crypto/virtio/virtio_cryptodev.h index fad73d54a8..075b5ff444 100644 --- a/drivers/crypto/virtio/virtio_cryptodev.h +++ b/drivers/crypto/virtio/virtio_cryptodev.h @@ -23,12 +23,12 @@ #define VIRTIO_CRYPTO_MAX_IV_SIZE 16 #define VIRTIO_CRYPTO_MAX_MSG_SIZE 512 -#define VIRTIO_CRYPTO_MAX_SIGN_SIZE 512 +#define VIRTIO_CRYPTO_MAX_SIGN_SIZE 1024 #define VIRTIO_CRYPTO_MAX_CIPHER_SIZE 1024 #define VIRTIO_CRYPTO_MAX_KEY_SIZE 256 -#define VIRTIO_CRYPTO_MAX_CTRL_DATA 2048 +#define VIRTIO_CRYPTO_MAX_CTRL_DATA 4096 extern uint8_t cryptodev_virtio_driver_id;