mirror of
https://github.com/QuasarApp/openssl.git
synced 2025-04-28 18:54:36 +00:00
Update md2test to use the test infrastructure
Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3165)
This commit is contained in:
parent
05d775288e
commit
524080c688
@ -75,7 +75,7 @@ IF[{- !$disabled{tests} -}]
|
|||||||
INCLUDE[ideatest]=../include
|
INCLUDE[ideatest]=../include
|
||||||
DEPEND[ideatest]=../libcrypto
|
DEPEND[ideatest]=../libcrypto
|
||||||
|
|
||||||
SOURCE[md2test]=md2test.c
|
SOURCE[md2test]=md2test.c testutil.c test_main.c
|
||||||
INCLUDE[md2test]=../include
|
INCLUDE[md2test]=../include
|
||||||
DEPEND[md2test]=../libcrypto
|
DEPEND[md2test]=../libcrypto
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
|
* Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the OpenSSL license (the "License"). You may not use
|
* Licensed under the OpenSSL license (the "License"). You may not use
|
||||||
* this file except in compliance with the License. You can obtain a copy
|
* this file except in compliance with the License. You can obtain a copy
|
||||||
@ -7,19 +7,13 @@
|
|||||||
* https://www.openssl.org/source/license.html
|
* https://www.openssl.org/source/license.html
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include "../e_os.h"
|
#include "../e_os.h"
|
||||||
|
#include "test_main.h"
|
||||||
|
#include "testutil.h"
|
||||||
|
|
||||||
#ifdef OPENSSL_NO_MD2
|
#ifndef OPENSSL_NO_MD2
|
||||||
int main(int argc, char *argv[])
|
|
||||||
{
|
|
||||||
printf("No MD2 support\n");
|
|
||||||
return (0);
|
|
||||||
}
|
|
||||||
#else
|
|
||||||
# include <openssl/evp.h>
|
# include <openssl/evp.h>
|
||||||
# include <openssl/md2.h>
|
# include <openssl/md2.h>
|
||||||
|
|
||||||
@ -35,7 +29,6 @@ static char *test[] = {
|
|||||||
"abcdefghijklmnopqrstuvwxyz",
|
"abcdefghijklmnopqrstuvwxyz",
|
||||||
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",
|
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",
|
||||||
"12345678901234567890123456789012345678901234567890123456789012345678901234567890",
|
"12345678901234567890123456789012345678901234567890123456789012345678901234567890",
|
||||||
NULL,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
static char *ret[] = {
|
static char *ret[] = {
|
||||||
@ -48,45 +41,27 @@ static char *ret[] = {
|
|||||||
"d5976f79d83d3a0dc9806c3c66f3efd8",
|
"d5976f79d83d3a0dc9806c3c66f3efd8",
|
||||||
};
|
};
|
||||||
|
|
||||||
static char *pt(unsigned char *md);
|
static int test_md2(int n)
|
||||||
int main(int argc, char *argv[])
|
|
||||||
{
|
{
|
||||||
int i, err = 0;
|
char buf[80];
|
||||||
char **P, **R;
|
|
||||||
char *p;
|
|
||||||
unsigned char md[MD2_DIGEST_LENGTH];
|
unsigned char md[MD2_DIGEST_LENGTH];
|
||||||
|
|
||||||
P = test;
|
|
||||||
R = ret;
|
|
||||||
i = 1;
|
|
||||||
while (*P != NULL) {
|
|
||||||
if (!EVP_Digest((unsigned char *)*P, strlen(*P), md, NULL, EVP_md2(),
|
|
||||||
NULL)) {
|
|
||||||
printf("EVP Digest error.\n");
|
|
||||||
EXIT(1);
|
|
||||||
}
|
|
||||||
p = pt(md);
|
|
||||||
if (strcmp(p, *R) != 0) {
|
|
||||||
printf("error calculating MD2 on '%s'\n", *P);
|
|
||||||
printf("got %s instead of %s\n", p, *R);
|
|
||||||
err++;
|
|
||||||
} else
|
|
||||||
printf("test %d ok\n", i);
|
|
||||||
i++;
|
|
||||||
R++;
|
|
||||||
P++;
|
|
||||||
}
|
|
||||||
EXIT(err);
|
|
||||||
return err;
|
|
||||||
}
|
|
||||||
|
|
||||||
static char *pt(unsigned char *md)
|
|
||||||
{
|
|
||||||
int i;
|
int i;
|
||||||
static char buf[80];
|
|
||||||
|
if (!TEST_true(EVP_Digest((unsigned char *)test[n], strlen(test[n]),
|
||||||
|
md, NULL, EVP_md2(), NULL)))
|
||||||
|
return 0;
|
||||||
|
|
||||||
for (i = 0; i < MD2_DIGEST_LENGTH; i++)
|
for (i = 0; i < MD2_DIGEST_LENGTH; i++)
|
||||||
sprintf(&(buf[i * 2]), "%02x", md[i]);
|
sprintf(&(buf[i * 2]), "%02x", md[i]);
|
||||||
return (buf);
|
if (!TEST_str_eq(buf, ret[n]))
|
||||||
|
return 0;
|
||||||
|
return 1;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
void register_tests(void)
|
||||||
|
{
|
||||||
|
#ifndef OPENSSL_NO_MD2
|
||||||
|
ADD_ALL_TESTS(test_md2, OSSL_NELEM(test));
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user