diff options
author | Stefan Berger <stefanb@linux.ibm.com> | 2021-06-14 13:35:48 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2021-06-30 16:58:48 -0400 |
commit | 4e57a54703a5a28681bb86288a971cb83a05359c (patch) | |
tree | 66214b68d4fa3f53ec856db65ce5dad0a65d7d20 /src/tcgbios.c | |
parent | ba949f552206dfd27aa54ef1044e2238434fe4be (diff) | |
download | seabios-4e57a54703a5a28681bb86288a971cb83a05359c.tar.gz |
Add implementations for sha256, sha384, and sha512
Signed-off-by: Stefan Berger <stefanb@linux.ibm.com>
Diffstat (limited to 'src/tcgbios.c')
-rw-r--r-- | src/tcgbios.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tcgbios.c b/src/tcgbios.c index 4150aa07..a9d62c84 100644 --- a/src/tcgbios.c +++ b/src/tcgbios.c @@ -16,7 +16,7 @@ #include "fw/paravirt.h" // runningOnXen #include "hw/tpm_drivers.h" // tpm_drivers[] #include "output.h" // dprintf -#include "sha1.h" // sha1 +#include "sha.h" // sha1, sha256, ... #include "std/acpi.h" // RSDP_SIGNATURE, rsdt_descriptor #include "std/smbios.h" // struct smbios_entry_point #include "std/tcg.h" // TCG_PC_LOGOVERFLOW |