Signing a CSR with OpenSSL
openssl x509 -req -CA ca-certificate.pem.txt -CAkey ca-key.pem.txt -in private.csr \
-out private.cer -days 365 -CAcreateserial
Java doesn't make creating CAs or signing part of keytool. This is very strange. Creating CAs and
signing CSRs seem like a fundamental abilities that users would want. The fact that they are left out
is another indication of how primitive SSL is with Java.
No comments:
Post a Comment