> > Here's the code I use on the page to process this: > > <cfset algorithm = "AES"> > > <cfset enctext = Encrypt(form.text,form.key,algorithm)> > > It works if I only use string and key, but it keeps breaking when I > choose encryption. >
I'm pretty sure you need to throw BouncyCastle into the mix here. http://bouncycastle.org/latest_releases.html Grab http://bouncycastle.org/download/bcprov-jdk15on-147.jar and it should work. I'll check with Andy and Alan to see if that's something that used to be included but maybe is missing from the build now, or if we can't include it for some reason, though I think since it's MIT license (which is GPL compatible) we should be able to. -- Matthew Woodward [email protected] http://blog.mattwoodward.com identi.ca / Twitter: @mpwoodward Please do not send me proprietary file formats such as Word, PowerPoint, etc. as attachments. http://www.gnu.org/philosophy/no-word-attachments.html -- online documentation: http://openbd.org/manual/ google+ hints/tips: https://plus.google.com/115990347459711259462 http://groups.google.com/group/openbd?hl=en
