openssl genrsa -aes256 -out ca-key.pem 4096This creates two files: the CA file 'ca.pem' and its private key 'privkey.pem' - a password for the private key is required.
openssl req -x509 -new -nodes -extensions v3_ca -key ca-key.pem -days 365 -out ca-root.pem -sha512
echo 00 > serial.srl3) Generate the server certificate and key:
openssl genrsa -out server.key 40964) Generate the client certificate and key:
openssl req -key server.key -new -out server.req
openssl x509 -req -in server.req -CA ca-root.pem -CAkey ca-key.pem -CAserial serial.srl -out server.pem
openssl genrsa -out user.key 40965) Merge the client certificate and key into a PFX file:
openssl req -key user.key -new -out user.req
openssl x509 -req -in user.req -CA ca-root.pem -CAkey ca-key.pem -CAserial serial.srl -out user.pem
openssl pkcs12 -export -out user.pfx -inkey user.key -in user.pemIt is possible now to proceed with the Cookbook article.
The Fortinet Security Fabric brings together the concepts of convergence and consolidation to provide comprehensive cybersecurity protection for all users, devices, and applications and across all network edges.
Copyright 2024 Fortinet, Inc. All Rights Reserved.