Fix Botan 2/3 include

Botan::secure_scrub_memory -> defined in mem_ops.h
Botan::secure_vector -> defined in secmem.h

The reason only including secmem.h worked in previous (<3.0) versions of
Botan was because secmem.h included mem_ops.h. This is no longer the
case since commit
randombit/botan@49dbbcb2bf (2023-10-11;
"Split out allocator helpers to allocator.h")

Fixes #10038
This commit is contained in:
Dan Church 2023-11-19 11:05:21 -06:00 committed by Jonathan White
parent 13c88e1013
commit cc0530ba46

View File

@ -19,6 +19,7 @@
#ifndef KEEPASSX_FILEKEY_H
#define KEEPASSX_FILEKEY_H
#include <botan/mem_ops.h>
#include <botan/secmem.h>
#include "keys/Key.h"