2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-22 09:57:41 +00:00
kea/compiler-checks/botan-hash.cc

8 lines
115 B
C++
Raw Normal View History

2025-03-26 10:30:04 +01:00
#include <botan/hash.h>
using namespace Botan;
auto h = HashFunction::create("MD5");
int main() {
return 0;
}