Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 534 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 534 Bytes

HPKE is an implementetion of RFC-9180 Hybrid Public Key Encryption API. Depends on LibreSSL libcrypto library.

Build Example

pacman -S libressl

Make sure to get LibreSSL libraries.

PKGCONFIG_DIR=/usr/lib/libressl/pkgconfig/
meson setup builddir -Dpkg_config_path=$PKGCONFIG_DIR
cd builddir
ninja test

LibreSSL's libcrypto library is not gonna be your default libcrypto library most likely. So you have to specify the directory libcrypto.pc file exist.