mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-08-22 01:49:48 +00:00
8 lines
115 B
C++
8 lines
115 B
C++
#include <botan/hash.h>
|
|
using namespace Botan;
|
|
auto h = HashFunction::create("MD5");
|
|
|
|
int main() {
|
|
return 0;
|
|
}
|