blob: 8f5696c503e3df68213dae61a315e0da8d5620b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
/*
* This file and its contents are supplied under the terms of the
* Common Development and Distribution License (), version 1.0.
* You may only use this file in accordance with the terms of version
* 1.0 of the CDDL.
*
* A full copy of the text of the CDDL should have accompanied this
* source. A copy of the CDDL is also available via the Internet at
* http://www.illumos.org/license/CDDL.
*/
/*
* Copyright 2018, Joyent, Inc.
*/
#include <stdio.h>
#include <sys/types.h>
#include "cryptotest.h"
extern size_t msgcount;
extern uint8_t *MSG[];
extern size_t MSGLEN[];
extern uint8_t *MD[];
extern size_t mdlen;
extern char *mechname;
int
main(void)
{
int i, errs = 0;
uint8_t N[1024];
cryptotest_t args = { 0 };
args.out = N;
args.outlen = sizeof (N);
args.mechname = mechname;
args.updatelen = 1;
for (i = 0; i < msgcount; i++) {
args.in = MSG[i];
args.inlen = MSGLEN[i];
errs += run_test(&args, MD[i], mdlen, DIGEST_FG);
}
if (errs != 0)
(void) fprintf(stderr, "%d tests failed\n", errs);
return (errs);
}
|