License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-2.6-block.git] / tools / build / feature / test-libcrypto.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
8ee46460
SE
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}