A colleague suggested creating a random key via the following command:
tr -dc A-Za-z0-9_\!\@\#\$\%\^\&\*\(\)-+= < /dev/urandom | head -c 32 | xargs
It gave me the error:
tr: Illegal byte sequence
I'm concerned that I do not have /dev/urandom on my system. I tried googling to figure out how to install this file, but I have come up empty. I tried locate urandom and also came up empty. (well actually, it found the man page, but that doesn't help)
How do I make urandom available on my Mac OSX system? (Lion)

xargs... – sendmoreinfo May 16 at 19:41