summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/ply/yacc.py
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@kernel.crashing.org>2022-02-28 19:30:53 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-03-02 00:20:50 +0000
commitd895863af12e15bebd9fa0640290d9a649ece82b (patch)
tree50be7032490701053128465002f1be4dece8b81d /bitbake/lib/ply/yacc.py
parent1d98b3aaaeca9033eba20a4fbf2a4e9bfa2be6bc (diff)
downloadpoky-d895863af12e15bebd9fa0640290d9a649ece82b.tar.gz
bitbake: utils/ply: Change md5 usages to work on FIPS enabled hosts
hashlib.md5() is not permitted on a FIPS enabled host system. This is due to md5 not being an approved hash algorithm. Instead use: hashlib.new('MD5', usedforsecurity=False) This is allowed, as it's clear the hash is used for a non-security purpose. Note: utils.py version should never be used to verify file integrity, but instead be used to identify if the file may have changed. sha256 should be used for integrity purposes. (Bitbake rev: af866dd077867cba0129757bfcc689551445e9d7) Signed-off-by: Mark Hatle <mark.hatle@xilinx.com> Signed-off-by: Mark Hatle <mark.hatle@kernel.crashing.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/ply/yacc.py')
-rw-r--r--bitbake/lib/ply/yacc.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/bitbake/lib/ply/yacc.py b/bitbake/lib/ply/yacc.py
index 46e7dc96f6..767c4e4674 100644
--- a/bitbake/lib/ply/yacc.py
+++ b/bitbake/lib/ply/yacc.py
@@ -2797,11 +2797,8 @@ class ParserReflect(object):
2797 # Compute a signature over the grammar 2797 # Compute a signature over the grammar
2798 def signature(self): 2798 def signature(self):
2799 try: 2799 try:
2800 from hashlib import md5 2800 import hashlib
2801 except ImportError: 2801 sig = hashlib.new('MD5', usedforsecurity=False)
2802 from md5 import md5
2803 try:
2804 sig = md5()
2805 if self.start: 2802 if self.start:
2806 sig.update(self.start.encode('latin-1')) 2803 sig.update(self.start.encode('latin-1'))
2807 if self.prec: 2804 if self.prec: