commit: 7c8e344dd138df4655d4a329b54b0e75d8ca9e3b
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 20 02:16:23 2020 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sat Jun 20 02:16:23 2020 +0000
URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=7c8e344d
gkbuilds/dropbear: Enable AES GCM support
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
gkbuilds/dropbear.gkbuild | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/gkbuilds/dropbear.gkbuild b/gkbuilds/dropbear.gkbuild
index e6a43f6..a165ae2 100644
--- a/gkbuilds/dropbear.gkbuild
+++ b/gkbuilds/dropbear.gkbuild
@@ -5,7 +5,10 @@ src_prepare() {
default
# Disable DSS support
- echo "#define DROPBEAR_DSS 0" > localoptions.h || die "Failed to
disable DSS support"
+ echo "#define DROPBEAR_DSS 0" >> localoptions.h || die "Failed to
disable DSS support"
+
+ # Enable AES GCM support
+ echo "#define DROPBEAR_ENABLE_GCM_MODE 1" >> localoptions.h || die
"Failed to enable AES GCM support"
}
src_configure() {