Skip to main content
  • Home
  • login
  • Browse the archive

    swh mirror partner logo
swh logo
SoftwareHeritage
Software
Heritage
Mirror
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

  • 44d13fe
  • /
  • ssl-tests
  • /
  • 30-supported-groups.conf.in
Raw File
Permalinks

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • content
  • directory
content badge Iframe embedding
swh:1:cnt:edffc0ffc92b6fd45941e26aaa50fe037fadb58a
directory badge Iframe embedding
swh:1:dir:f8d361fc8a2211b8c7ce5b565f58dfab919a7bdc
30-supported-groups.conf.in
# -*- mode: perl; -*-
# Copyright 2016-2022 The OpenSSL Project Authors. All Rights Reserved.
#
# Licensed under the OpenSSL license (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


## SSL test configurations

package ssltests;
use OpenSSL::Test::Utils;

our @tests = (
    {
        name => "Just a sanity test case",
        server => { },
        client => { },
        test   => { "ExpectedResult" => "Success" },
    },
);

our @tests_tls1_3 = (
    {
        name => "Fail empty groups with TLS1.3",
        server => { },
        client => { "Groups" => "sect163k1" },
        test   => { "ExpectedResult" => "ClientFail" },
    },
);

our @tests_tls1_2 = (
    {
        name => "Pass with empty groups with TLS1.2",
        server => { },
        client => { "Groups" => "sect163k1",
                    "MaxProtocol" => "TLSv1.2" },
        test   => { "ExpectedResult" => "Success" },
    },
);

push @tests, @tests_tls1_3 unless disabled("tls1_3")
                                  || !disabled("ec2m") || disabled("ec");
push @tests, @tests_tls1_2 unless disabled("tls1_2") || disabled("ec");

ENEA — Copyright (C), ENEA. License: GNU AGPLv3+.
Legal notes  ::  JavaScript license information ::  Web API

back to top