2
0

15-certstatus.cnf.in 1018 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # -*- mode: perl; -*-
  2. # Copyright 2016-2020 The OpenSSL Project Authors. All Rights Reserved.
  3. #
  4. # Licensed under the Apache License 2.0 (the "License"). You may not use
  5. # this file except in compliance with the License. You can obtain a copy
  6. # in the file LICENSE in the source distribution or at
  7. # https://www.openssl.org/source/license.html
  8. ## Test CertStatus messages
  9. use strict;
  10. use warnings;
  11. package ssltests;
  12. our @tests = (
  13. {
  14. name => "certstatus-good",
  15. server => {
  16. extra => {
  17. "CertStatus" => "GoodResponse",
  18. },
  19. },
  20. client => {},
  21. test => {
  22. "Method" => "TLS",
  23. "ExpectedResult" => "Success"
  24. }
  25. },
  26. {
  27. name => "certstatus-bad",
  28. server => {
  29. extra => {
  30. "CertStatus" => "BadResponse",
  31. },
  32. },
  33. client => {},
  34. test => {
  35. "Method" => "TLS",
  36. "ExpectedResult" => "ClientFail"
  37. }
  38. },
  39. );