[EMAIL PROTECTED] wrote:
Last question...
I fixed the problem. The last issue was also my fault. I had changed the
algorithm to DES when I was troubleshooting and for some reason it doesn't
like algorithms under 128 bit. But I don't know why it didn't work
previously.
Why couldn't it find the provider at number 6?
I'm new to java encryption so I'll figure out how why it didn't like DES
vice triple DES.
I just don't know why the providers didn't cascade.
It's a bug in JDK 1.4.2. If a Cipher implementation doesn't support a
particular padding scheme, it doesn't fallback and check the remaining
providers. If you upgrade to 1.5 (5.0), the problem will go away.
--Sean