| 1 | /* |
| 2 | * SPDX-License-Identifier: GPL-2.0-or-later |
| 3 | * |
| 4 | * uefi vars device - pkcs7 stubs |
| 5 | */ |
| 6 | #include "qemu/osdep.h" |
| 7 | #include "system/dma.h" |
| 8 | |
| 9 | #include "hw/uefi/var-service.h" |
| 10 | |
| 11 | efi_status uefi_vars_check_pkcs7_2(uefi_variable *siglist, |
| 12 | void **digest, uint32_t *digest_size, |
| 13 | mm_variable_access *va, void *data) |
| 14 | { |
| 15 | return EFI_WRITE_PROTECTED; |
| 16 | } |