[PATCH 0/2] xen/lib: SHA2 cleanup, and SHA1 support

Andrew Cooper posted 2 patches 2 weeks, 1 day ago
xen/arch/x86/cpu/microcode/amd.c |   2 +-
xen/include/xen/sha1.h           |  14 ++
xen/include/xen/sha2.h           |   4 +-
xen/lib/Makefile                 |   1 +
xen/lib/sha1.c                   | 215 +++++++++++++++++++++++++++++++
xen/lib/sha2-256.c               |   8 +-
6 files changed, 237 insertions(+), 7 deletions(-)
create mode 100644 xen/include/xen/sha1.h
create mode 100644 xen/lib/sha1.c
[PATCH 0/2] xen/lib: SHA2 cleanup, and SHA1 support
Posted by Andrew Cooper 2 weeks, 1 day ago
Pulled out of the Trenchboot series.

Andrew Cooper (1):
  xen/lib: Misc SHA2 cleanup

Krystian Hebel (1):
  xen/lib: Introduce SHA-1

 xen/arch/x86/cpu/microcode/amd.c |   2 +-
 xen/include/xen/sha1.h           |  14 ++
 xen/include/xen/sha2.h           |   4 +-
 xen/lib/Makefile                 |   1 +
 xen/lib/sha1.c                   | 215 +++++++++++++++++++++++++++++++
 xen/lib/sha2-256.c               |   8 +-
 6 files changed, 237 insertions(+), 7 deletions(-)
 create mode 100644 xen/include/xen/sha1.h
 create mode 100644 xen/lib/sha1.c

-- 
2.39.5
Re: [PATCH 0/2] xen/lib: SHA2 cleanup, and SHA1 support
Posted by Jan Beulich 1 week, 5 days ago
On 28.11.2025 19:47, Andrew Cooper wrote:
> Pulled out of the Trenchboot series.
> 
> Andrew Cooper (1):
>   xen/lib: Misc SHA2 cleanup
> 
> Krystian Hebel (1):
>   xen/lib: Introduce SHA-1
> 
>  xen/arch/x86/cpu/microcode/amd.c |   2 +-
>  xen/include/xen/sha1.h           |  14 ++
>  xen/include/xen/sha2.h           |   4 +-
>  xen/lib/Makefile                 |   1 +
>  xen/lib/sha1.c                   | 215 +++++++++++++++++++++++++++++++
>  xen/lib/sha2-256.c               |   8 +-
>  6 files changed, 237 insertions(+), 7 deletions(-)
>  create mode 100644 xen/include/xen/sha1.h
>  create mode 100644 xen/lib/sha1.c

Acked-by: Jan Beulich <jbeulich@suse.com>

I'll raise one question on patch 2, but that's not to make the ack above
conditional in any way.

Jan