> Was reviewing the code....Question - If we write a class that > extends SignatureAlgorithm (see SignatureBaseRSA$SignatureRSASHA1 for > example, we should be able to use the NativeJCE jar without > having to sign it first). Right?
Yes, signature providers can be unsigned, it's encryption providers that can't be. So you have to implement the signature algorithm without calling back into the JCE. -- Scott