summaryrefslogtreecommitdiff
path: root/regress/lib/libcrypto/mlkem/mlkem1024_nist_decap_tests.c
blob: a59d062234c08e25acfb10a65167c2e0f74490ba (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/*	$OpenBSD: mlkem1024_nist_decap_tests.c,v 1.2 2024/12/14 19:16:24 tb Exp $ */
/*
 * Copyright (c) 2024, Google Inc.
 * Copyright (c) 2024, Bob Beck <beck@obtuse.com>
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include <openssl/bytestring.h>
#include <openssl/mlkem.h>

#include "mlkem_internal.h"
#include "mlkem_tests_util.h"

static void
MlkemNistDecapFileTest(CBS *c, CBS *k, CBS *dk)
{
	uint8_t shared_secret[MLKEM_SHARED_SECRET_BYTES];
	struct MLKEM1024_private_key priv;

	TEST(CBS_len(dk) != MLKEM1024_PRIVATE_KEY_BYTES,
	    "private key len bogus");
	TEST(CBS_len(k) != MLKEM_SHARED_SECRET_BYTES,
	    "shared secret len bogus");

	TEST(!MLKEM1024_parse_private_key(&priv, dk), "parse_private_key");
	TEST(!MLKEM1024_decap(shared_secret, CBS_data(c), CBS_len(c), &priv),
	    "decap");
	TEST_DATAEQ(shared_secret, CBS_data(k),
	    MLKEM_SHARED_SECRET_BYTES, "shared_secret");
}

#define S_START 0
#define S_CIPHERTEXT 1
#define S_SHARED_SECRET  2
#define S_PRIVATE_KEY 3

int
main(int argc, char **argv)
{
	CBS ciphertext, shared_secret, private_key;
	const uint8_t *p;
	char *buf;
	FILE *fp;
	int state;

	fprintf(stderr, "Testing NIST decap test vectors in %s\n", argv[1]);
	TEST((fp = fopen(argv[1], "r")) == NULL, "can't open test file");
	MALLOC(buf, 16*1024);
	state = S_CIPHERTEXT;
	test_number = 1;
	while (fgets(buf, 16*1024, fp) != NULL) {
		switch (state) {
		case S_START:
			if (strcmp(buf, "\n") != 0)
				break;
			state = S_CIPHERTEXT;
			break;
		case S_CIPHERTEXT:
			if (strncmp(buf, "ciphertext: ",
			    strlen("ciphertext: ")) != 0) {
				break;
			}
			grab_data(&ciphertext, buf, strlen("ciphertext: "));
			state = S_SHARED_SECRET;
			break;
		case S_SHARED_SECRET:
			if (strncmp(buf, "shared_secret: ",
			    strlen("shared_secret: ")) != 0)
				break;
			grab_data(&shared_secret, buf,
			    strlen("shared_secret: "));
			state = S_PRIVATE_KEY;
			break;
		case S_PRIVATE_KEY:
			if (strncmp(buf, "private_key: ",
			    strlen("private_key: ")) != 0)
				break;
			grab_data(&private_key, buf, strlen("private_key: "));
			p = CBS_data(&private_key);

			MlkemNistDecapFileTest(&ciphertext, &shared_secret,
			    &private_key);
			free((void *)CBS_data(&ciphertext));
			free((void *)CBS_data(&shared_secret));
			free((void *)p);

			state = S_START;
			test_number++;
			break;
		}
	}

	free(buf);
	exit(failure);
}