R
R
RuRoman2022-02-01 15:25:59
linux
RuRoman, 2022-02-01 15:25:59

Create and revoke openssl certificate for client?

Created a certificate for the server and client:

openssl genrsa -des3 -out ca.key 4096
openssl req -new -x509 -days 3650 -key ca.key -out ca.crt
openssl genrsa -des3 -out user.key 4096
openssl req -new -key user.key -out user.csr
openssl x509 -req -days 3650 -in user.csr -CA ca.crt -CAkey ca.key -set_serial 01 -out user.crt
openssl pkcs12 -export -out user.pfx -inkey user.key -in user.crt -certfile ca.crt

And I can't figure out how to create another certificate for the client and revoke it...

Answer the question

In order to leave comments, you need to log in

1 answer(s)
N
Nikolai Turnaviotov, 2022-02-02
@foxmuldercp

review - publication on the review server. in just file mode as it usually happens - this will not work, such an ecosystem is not fully raised

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question