]> git.proxmox.com Git - mirror_qemu.git/blob - qapi/cryptodev.json
cryptodev: Introduce cryptodev.json
[mirror_qemu.git] / qapi / cryptodev.json
1 # -*- Mode: Python -*-
2 # vim: filetype=python
3 #
4 # This work is licensed under the terms of the GNU GPL, version 2 or later.
5 # See the COPYING file in the top-level directory.
6
7 ##
8 # @QCryptodevBackendType:
9 #
10 # The crypto device backend type
11 #
12 # @builtin: the QEMU builtin support
13 # @vhost-user: vhost-user
14 # @lkcf: Linux kernel cryptographic framework
15 #
16 # Since: 8.0
17 ##
18 { 'enum': 'QCryptodevBackendType',
19 'prefix': 'QCRYPTODEV_BACKEND_TYPE',
20 'data': ['builtin', 'vhost-user', 'lkcf']}