root/tools/build/feature/test-libcrypto.c

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. main

   1 // SPDX-License-Identifier: GPL-2.0
   2 #include <openssl/sha.h>
   3 #include <openssl/md5.h>
   4 
   5 int main(void)
   6 {
   7         MD5_CTX context;
   8         unsigned char md[MD5_DIGEST_LENGTH + SHA_DIGEST_LENGTH];
   9         unsigned char dat[] = "12345";
  10 
  11         MD5_Init(&context);
  12         MD5_Update(&context, &dat[0], sizeof(dat));
  13         MD5_Final(&md[0], &context);
  14 
  15         SHA1(&dat[0], sizeof(dat), &md[0]);
  16 
  17         return 0;
  18 }

/* [<][>][^][v][top][bottom][index][help] */