Granted, I'm currently quite tired, but I've been messing with this for the last hour and can't figure out what's going wrong.
I'm trying to set up straight forward encryption, I take some values from a form (Title, text, key) Title and text should be encrypted, key is of course the key to use for encrypting. 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. It seems that no matter what I enter, or how, I get the error "3".. Preferably I'd like to use all the options including salt and iterations, but if I can at least use AES I'm not too worried. -- online documentation: http://openbd.org/manual/ google+ hints/tips: https://plus.google.com/115990347459711259462 http://groups.google.com/group/openbd?hl=en
