mirror of
https://gitlab.isc.org/isc-projects/kea.git
synced 2025-12-20 00:53:34 +08: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;
|
|
}
|