Re: [PATCH 3/6] bootstrap: Add gnulib's base64 module

2019-11-04 Thread Patrick Steinhardt
On Mon, Nov 04, 2019 at 10:30:01AM +, Max Tottenham wrote: > On 11/02, Patrick Steinhardt wrote: [snip] > > --- /dev/null > > +++ b/grub-core/lib/gnulib-patches/fix-base64.patch > > @@ -0,0 +1,26 @@ > > +diff --git a/lib/base64.h b/lib/base64.h > > +index 9cd0183b8..7b06e03df 100644 > > +--- a/

Re: [PATCH 3/6] bootstrap: Add gnulib's base64 module

2019-11-04 Thread Max Tottenham via Grub-devel
On 11/02, Patrick Steinhardt wrote: > The upcoming support for LUKS2 disc encryption requires us to include a > parser for base64-encoded data, as it is used to represent salts and > digests. As gnulib already has code to decode such data, we can just > add it to the boostrapping configuration in o

[PATCH 3/6] bootstrap: Add gnulib's base64 module

2019-11-02 Thread Patrick Steinhardt
The upcoming support for LUKS2 disc encryption requires us to include a parser for base64-encoded data, as it is used to represent salts and digests. As gnulib already has code to decode such data, we can just add it to the boostrapping configuration in order to make it available in GRUB. The gnul