Add an inital version of an ML-KEM fuzzer. Exercises various ML-KEM appropriate apis, as a fuzzer does. Currently it is able to randomly: 1) Attempt to create raw public private keys of various valid and invalid sizes 2) Generate legitimate keys of various sizes using the keygen api 3) Preform encap/decap operations using real generated keys 4) Do a shared secret derivation using 2 keys 5) Do an export and import of a key using todata/fromdata 6) Do a comparison of two equal and unequal keys Its not much to start, but it should be fairly extensible Reviewed-by: Viktor Dukhovni <viktor@openssl.org> Reviewed-by: Tim Hudson <tjh@openssl.org> (Merged from https://github.com/openssl/openssl/pull/26657)
25 lines
702 B
Perl
25 lines
702 B
Perl
#!/usr/bin/env perl
|
|
# Copyright 2025 The OpenSSL Project Authors. All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License 2.0 (the "License"). You may not use
|
|
# this file except in compliance with the License. You can obtain a copy
|
|
# in the file LICENSE in the source distribution or at
|
|
# https://www.openssl.org/source/license.html
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use OpenSSL::Test qw/:DEFAULT srctop_file/;
|
|
use OpenSSL::Test::Utils;
|
|
|
|
my $fuzzer = "ml-kem";
|
|
setup("test_fuzz_${fuzzer}");
|
|
|
|
plan skip_all => "This test requires ml-kem support"
|
|
if disabled("ml-kem");
|
|
|
|
plan tests => 2; # one more due to below require_ok(...)
|
|
|
|
require_ok(srctop_file('test','recipes','fuzz.pl'));
|
|
|
|
fuzz_ok($fuzzer);
|