From f306b749ae5186fd3ddd4b91c4976f6cb4cef46a Mon Sep 17 00:00:00 2001 From: Derek Bruening Date: Tue, 24 Sep 2024 11:10:32 -0400 Subject: [PATCH] i#2498 bcrypt init: Add bcrypt.dll to allowlist (#2516) Adds bcrypt.dll to the allowlist of known libraries we expect to potentially see inside the drmemory.exe process. Issue: #2498 --- drmemory/frontend.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drmemory/frontend.c b/drmemory/frontend.c index f6362723..ffe12672 100644 --- a/drmemory/frontend.c +++ b/drmemory/frontend.c @@ -1,5 +1,5 @@ /* ********************************************************** - * Copyright (c) 2010-2021 Google, Inc. All rights reserved. + * Copyright (c) 2010-2024 Google, Inc. All rights reserved. * Copyright (c) 2010 VMware, Inc. All rights reserved. * **********************************************************/ @@ -486,6 +486,7 @@ static const TCHAR * const known_libs[] = { L"apphelp.dll", L"cryptbase.dll", L"bcryptprimitives.dll", + L"bcrypt.dll", L"sspicli.dll", L"rpcrt4.dll", L"advapi32.dll",