blob: 7df5bb259598fc5d6890a3d31f852d502f12ffca [file] [log] [blame]
Kaido Kertb1089432024-03-18 19:46:49 -07001/* Copyright (c) 2018, Google Inc.
2 *
3 * Permission to use, copy, modify, and/or distribute this software for any
4 * purpose with or without fee is hereby granted, provided that the above
5 * copyright notice and this permission notice appear in all copies.
6 *
7 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
10 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
13 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
14
15#include <openssl/md5.h>
16
17#include <gtest/gtest.h>
18
19#include "internal.h"
20#include "../../test/abi_test.h"
21
22
23#if defined(MD5_ASM) && defined(SUPPORTS_ABI_TEST)
24TEST(MD5Test, ABI) {
25 MD5_CTX ctx;
26 MD5_Init(&ctx);
27
28 static const uint8_t kBuf[MD5_CBLOCK * 8] = {0};
29 CHECK_ABI(md5_block_asm_data_order, ctx.h, kBuf, 1);
30 CHECK_ABI(md5_block_asm_data_order, ctx.h, kBuf, 2);
31 CHECK_ABI(md5_block_asm_data_order, ctx.h, kBuf, 4);
32 CHECK_ABI(md5_block_asm_data_order, ctx.h, kBuf, 8);
33}
34#endif // MD5_ASM && SUPPORTS_ABI_TEST