1

I am using IBMJSSE2 provider in my enterprise application.

I am migrating from websphere 8.5 to Liberty 8.5. So Can I use? .p12 file which I got from websphere installed location inside appsvr01

  • If yes then how to use it in tag of server.xml(liberty)

-If no then can we generate our own keystore using IBMJSSE2 standard in liberty.Please explain.

Andy Guibert
  • 41,446
  • 8
  • 38
  • 61
lalit
  • 29
  • 1
  • 6

1 Answers1

0

The answer is yes
Did you checked the doc here ?

<keyStore id="samplePKCS12KeyStore"
          location="MyKeyStoreFile.p12"
          type="PKCS12" 
          password="myPassword" />
titou10
  • 2,814
  • 1
  • 19
  • 42
  • DO I need to import MyKeyStoreFile.p12 from somewhere or it will be created automatically on mentioning it in server.xml and starting the server – lalit Sep 24 '17 at 03:15
  • From the same doc: `PKCS12 keystore Public Key Cryptography Standards #12 (PKCS12) keystore can be used, but not created by Liberty` – titou10 Sep 25 '17 at 11:28
  • Liberty will not create a PKCS12 keystore. But will use one that you created using some other tool. – Alaine Sep 27 '17 at 16:13