#include "config.h" #include #include /** * crypto/hkdf_sha256 - RFC5869 Hardened Key Derivation Functions using SHA256 * * This code implements the hkdf described in RFC5869. * * License: BSD-MIT * Maintainer: Rusty Russell */ int main(int argc, char *argv[]) { /* Expect exactly one argument */ if (argc != 2) return 1; if (strcmp(argv[1], "depends") == 0) { printf("ccan/crypto/hmac_sha256\n"); return 0; } if (strcmp(argv[1], "testdepends") == 0) { printf("ccan/str/hex\n"); return 0; } return 1; }