security/nss/tests/chains/scenarios/dsa.cfg

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     1 # This Source Code Form is subject to the terms of the Mozilla Public
     2 # License, v. 2.0. If a copy of the MPL was not distributed with this
     3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
     5 scenario DSA
     7 entity Root
     8   type Root
     9   ctype dsa
    11 entity CA1
    12   type Intermediate
    13   issuer Root
    14   ctype dsa
    16 entity EE1
    17   type EE
    18   issuer CA1
    19   ctype dsa
    21 entity CA2
    22   type Intermediate
    23   issuer Root
    24   ctype dsa
    26 entity EE2
    27   type EE
    28   issuer CA2
    29   ctype rsa
    31 entity CA3
    32   type Intermediate
    33   issuer Root
    34   ctype rsa
    36 entity EE3
    37   type EE
    38   issuer CA3
    39   ctype dsa
    41 entity CA4
    42   type Intermediate
    43   issuer Root
    44   ctype rsa
    46 entity EE4
    47   type EE
    48   issuer CA4
    49   ctype rsa
    51 db All
    53 verify EE1:CA1
    54   cert CA1:Root
    55   trust Root:
    56   result pass
    58 verify EE2:CA2
    59   cert CA2:Root
    60   trust Root:
    61   result pass
    63 verify EE3:CA3
    64   cert CA3:Root
    65   trust Root:
    66   result pass
    68 verify EE4:CA4
    69   cert CA4:Root
    70   trust Root:
    71   result pass

mercurial