mirror of https://github.com/xemu-project/xemu.git
21 lines
488 B
Python
21 lines
488 B
Python
# -*- Mode: Python -*-
|
|
# vim: filetype=python
|
|
#
|
|
# This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
# See the COPYING file in the top-level directory.
|
|
|
|
##
|
|
# @QCryptodevBackendType:
|
|
#
|
|
# The crypto device backend type
|
|
#
|
|
# @builtin: the QEMU builtin support
|
|
# @vhost-user: vhost-user
|
|
# @lkcf: Linux kernel cryptographic framework
|
|
#
|
|
# Since: 8.0
|
|
##
|
|
{ 'enum': 'QCryptodevBackendType',
|
|
'prefix': 'QCRYPTODEV_BACKEND_TYPE',
|
|
'data': ['builtin', 'vhost-user', 'lkcf']}
|