Hi, I need to use Sun JCE provider in an application that is running on IBM Websphere. This can be achieved by specifying the security_provider.1=com.sun.crypto.provider.SunJCE. Some parts of my application make use of SSL facilities of IBM.
I want to know whether configuring the SunJCE provider affects the JSSE provider usage in other parts of my application.
The other question I wanted to ask is, is there any way I can continue using IBM JDK defaults (JCE< JSSE and other) and use only Sun JCE wherever required. I mean I will configure Sun JCE Provider as the last one security_provider.10. And in the code base where I need to use Sun JCE provider, I will explicitly provide the provider name in my Crypto related classes. For ex Cipher cip = Cipher.getInstance("DES","Sun")..
Please let me know which is the best way.