tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

dsa.cfg (919B)


      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/.
      4 
      5 scenario DSA
      6 
      7 entity Root
      8  type Root
      9  ctype dsa
     10 
     11 entity CA1
     12  type Intermediate
     13  issuer Root
     14  ctype dsa
     15 
     16 entity EE1
     17  type EE
     18  issuer CA1
     19  ctype dsa
     20 
     21 entity CA2
     22  type Intermediate
     23  issuer Root
     24  ctype dsa
     25 
     26 entity EE2
     27  type EE
     28  issuer CA2
     29  ctype rsa
     30 
     31 entity CA3
     32  type Intermediate
     33  issuer Root
     34  ctype rsa
     35 
     36 entity EE3
     37  type EE
     38  issuer CA3
     39  ctype dsa
     40 
     41 entity CA4
     42  type Intermediate
     43  issuer Root
     44  ctype rsa
     45 
     46 entity EE4
     47  type EE
     48  issuer CA4
     49  ctype rsa
     50 
     51 db All
     52 
     53 verify EE1:CA1
     54  cert CA1:Root
     55  trust Root:
     56  result pass
     57 
     58 verify EE2:CA2
     59  cert CA2:Root
     60  trust Root:
     61  result pass
     62 
     63 verify EE3:CA3
     64  cert CA3:Root
     65  trust Root:
     66  result pass
     67 
     68 verify EE4:CA4
     69  cert CA4:Root
     70  trust Root:
     71  result pass