cregit-Linux how code gets into the kernel

Release 4.7 tools/build/feature/test-libcrypto.c

#include <openssl/sha.h>
#include <openssl/md5.h>


int main(void) { MD5_CTX context; unsigned char md[MD5_DIGEST_LENGTH + SHA_DIGEST_LENGTH]; unsigned char dat[] = "12345"; MD5_Init(&context); MD5_Update(&context, &dat[0], sizeof(dat)); MD5_Final(&md[0], &context); SHA1(&dat[0], sizeof(dat), &md[0]); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
stephane eranianstephane eranian84100.00%1100.00%
Total84100.00%1100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
stephane eranianstephane eranian90100.00%1100.00%
Total90100.00%1100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}