cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

test-libcrypto.c (361B)


      1// SPDX-License-Identifier: GPL-2.0
      2#include <openssl/sha.h>
      3#include <openssl/md5.h>
      4
      5int 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}