Use JCE Provider for JSSE
As far as I know, it is not possible to use a jce provider for the cryptographic operations of the jsse reference implementation. The sun implementation uses the algorithms implemented in the jsse provider.
There was a statement from sun, that this may change with the integration of jsse in the jdk 1.4, but with the current beta this is not the case.
Does anybody know a jsse implementation which supports the use of a third party jce provider? Actually we want to use our own smart card based jce provider to provide a jsse compatible java ssl implementation.

