Hi,
As I want to use a Let's encrypt certficate for HTTPS:
I used the openssl implementation for Windows and the ACME jar file as described in https://www.b4x.com/android/forum/t...rypt-certificates-acme-client.101385/#content
And the example on the reference page to create a wildcard certificate.
I ended up with three files: cert.pem, chain.pem and fullchain.pem
I now need to convert them to a Java JKS, which (if I found this correctly) needs to pass by creating a pkcs12 file, by a command like
"openssl pkcs12 -export -out cert.pkcs12 -in cert.pem -inkey key.pem"
but what is my key.pem in the statement above ?
Thanks
As I want to use a Let's encrypt certficate for HTTPS:
I used the openssl implementation for Windows and the ACME jar file as described in https://www.b4x.com/android/forum/t...rypt-certificates-acme-client.101385/#content
And the example on the reference page to create a wildcard certificate.
I ended up with three files: cert.pem, chain.pem and fullchain.pem
I now need to convert them to a Java JKS, which (if I found this correctly) needs to pass by creating a pkcs12 file, by a command like
"openssl pkcs12 -export -out cert.pkcs12 -in cert.pem -inkey key.pem"
but what is my key.pem in the statement above ?
Thanks