> The receiving box is using the AES-256 cipher, and it doesn't appear that > CF9 supports it. I've already dumped the results of > java.security.Security.getProviders(). and there's nothing in the providers > array that specifically references AES-256..I'm also a noob when it comes > to keyed encryption so I may not even know exactly what I'm looking at.. > > I've also called removeProvider() and removed JsafeJCE and I still get the > same "Algorithmn Negotiation fail" error. > > Has anyone gotten this to work?
I haven't tried to do this. CF 9 supports AES, but the key size is limited to 128 bits by default by the JVM (not CF). You'll need to install the Java Cryptography Extension (JCE) Unlimited Strength Policy Files for your Java apps to use a larger key size. CF docs - read the "keysize" section http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-6e72.html JCE policy files for Java 7 http://www.oracle.com/technetwork/java/javase/downloads/jce-7-download-432124.html JCE policy files for Java 6 http://www.oracle.com/technetwork/java/javase/downloads/jce-6-download-429243.html Let me know if that works for you. Dave Watts, CTO, Fig Leaf Software 1-202-527-9569 http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor-authorized instruction at our training centers, online, or onsite. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:358836 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

