Files
qemu-qemu-1/crypto/cipher-stub.c.inc

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
847 B
PHP
Raw Normal View History

2025-05-06 15:07:08 +01:00
/*
* SPDX-License-Identifier: GPL-2.0-or-later
*
* QEMU Crypto cipher impl stub
*
* Copyright (c) 2025 Red Hat, Inc.
*
*/
bool qcrypto_cipher_supports(QCryptoCipherAlgo alg,
QCryptoCipherMode mode)
{
return false;
}
static QCryptoCipher *qcrypto_cipher_ctx_new(QCryptoCipherAlgo alg,
QCryptoCipherMode mode,
const uint8_t *key,
size_t nkey,
Error **errp)
{
if (!qcrypto_cipher_validate_key_length(alg, mode, nkey, errp)) {
return NULL;
}
error_setg(errp,
"Unsupported cipher algorithm %s, no crypto library enabled in build",
QCryptoCipherAlgo_str(alg));
return NULL;
}