From: Lennart Poettering Date: Thu, 17 Nov 2016 16:03:21 +0000 (+0100) Subject: core: add "khash" API to src/basic/ (as wrapper around kernel AF_ALG) X-Git-Tag: v233.3~158 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=90d6a4ed9d3ef81bad45801bfebe7446ee9d08ef;hp=90d6a4ed9d3ef81bad45801bfebe7446ee9d08ef;p=elogind.git core: add "khash" API to src/basic/ (as wrapper around kernel AF_ALG) Let's take inspiration from bluez's ELL library, and let's move our cryptographic primitives away from libgcrypt and towards the kernel's AF_ALG cryptographic userspace API. In the long run we should try to remove the dependency on libgcrypt, in favour of using only the kernel's own primitives, however this is unlikely to happen anytime soon, as the kernel does not provide Elliptic Curve APIs to userspace at this time, and we need them for the DNSSEC cryptographic. This commit only covers hashing for now, symmetric encryption/decryption or even asymetric encryption/decryption is not available for now. "khash" is little more than a lightweight wrapper around the kernel's AF_ALG socket API. ---