mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-31 10:48:59 +00:00

These parse the structures as defined in: * https://datatracker.ietf.org/doc/draft-ietf-sacm-coswid/ * https://github.com/hughsie/python-uswid
20 lines
419 B
C
20 lines
419 B
C
/*
|
|
* Copyright (C) 2022 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "fu-firmware.h"
|
|
|
|
#define FU_TYPE_COSWID_FIRMWARE (fu_coswid_firmware_get_type())
|
|
G_DECLARE_DERIVABLE_TYPE(FuCoswidFirmware, fu_coswid_firmware, FU, COSWID_FIRMWARE, FuFirmware)
|
|
|
|
struct _FuCoswidFirmwareClass {
|
|
FuFirmwareClass parent_class;
|
|
};
|
|
|
|
FuFirmware *
|
|
fu_coswid_firmware_new(void);
|