From 2db7f6a4a4497df62bd03d7d206d0ae5b6473f9a Mon Sep 17 00:00:00 2001 From: Zuul Date: Mon, 12 Jul 2021 23:09:35 +0000 Subject: [PATCH] Update git submodules * Update designate from branch 'master' to 6fc04e72ec1fd039290173197dc4921df2f3d1c0 - Merge "Replace md5 for fips" - Replace md5 for fips md5 is not an approved algorithm in FIPS mode, and trying to instantiate a hashlib.md5() will fail when the system is running in FIPS mode. md5 is allowed when in a non-security context. There is a plan to add a keyword parameter (usedforsecurity) to hashlib.md5() to annotate whether or not the instance is being used in a security context. In the case where it is not, the instantiation of md5 will be allowed. See https://bugs.python.org/issue9216 for more details. Some downstream python versions already support this parameter. To support these versions, a new encapsulation of md5() has been added to oslo_utils. See https://review.opendev.org/#/c/750031/ In this case, md5 is used to calculate the hash of a database record to ensure record uniqueness. Change-Id: Ic2571caa71dc99c417ea0933d5d4947287cbe312 --- designate | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/designate b/designate index 4797efae2e..6fc04e72ec 160000 --- a/designate +++ b/designate @@ -1 +1 @@ -Subproject commit 4797efae2e26c81d1749e1faa1802b8e321abff1 +Subproject commit 6fc04e72ec1fd039290173197dc4921df2f3d1c0