We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 071dc43 commit 7ce7f7bCopy full SHA for 7ce7f7b
qiling/os/uefi/utils.py
@@ -167,6 +167,9 @@ def str_to_guid(guid: str) -> EFI_GUID:
167
168
return EFI_GUID.from_buffer_copy(buff)
169
170
+def CompareGuid(guid1: EFI_GUID, guid2: EFI_GUID) -> bool:
171
+ return bytes(guid1) == bytes(guid2)
172
+
173
def install_configuration_table(context, key: str, table: int):
174
"""Create a new Configuration Table entry and add it to the list.
175
0 commit comments