Certificati intermedi multipli su openssl

2

Ho bisogno di creare più certificati intermedi in modo che la catena sia come questa root > > int 1 > > int 2 > > utente cert.

Fino ad ora, ho creato una radice e un certificato intermedio (firmato da root) e un altro certificato intermedio (firmato dal precedente intermedio). Ora, quale sarebbe il prossimo processo?

Se ci sarà un singolo intermedio allora verrà usato il comando sotto citato.

openssl pkcs12 -export -out ia.p12 -inkey ia.key -in ia.crt -chain -CAfile ca.crt

Dato che ne ho due, come funziona il comando?

Qualsiasi aiuto sarà apprezzato.

    
posta BoX 07.11.2018 - 15:17
fonte

1 risposta

1

Da la documentazione :

FILE CREATION OPTIONS
...
-in filename
The filename to read certificates and private keys from, standard input by default. They must all be in PEM format. The order doesn't matter but one private key and its corresponding certificate should be present. If additional certificates are present they will also be included in the PKCS#12 file.

In altre parole: tutti i certificati dovrebbero trovarsi all'interno del file dato dall'argomento -in .

    
risposta data 07.11.2018 - 15:22
fonte

Leggi altre domande sui tag