Hash : 28311d43 Author : Date : 2015-02-14T18:51:44
conditionally build certhash into openssl(1) For now, look for openat and symlink. We may switch to just needing symlink later.
Download
1 2 3 4 5 6 7 8 9 10 11 12 13
/* * Public domain * certhash dummy implementation for platforms without symlinks */ #include "apps.h" int certhash_main(int argc, char **argv) { fprintf(stderr, "certhash is not enabled on this platform\n"); return (1); }