If you just need a simple Encryption / Decription
This is a fast and powerful Encryption
http://www.freepascal.org/docs-html/fcl/blowfish/tblowfish.htmlAnd it does not require installing anything further, compiling etc
Just add BlowFish to your uses

If you just need simple encoding you can use the following method
for example you just want to keep your brother or sister, gf etc
from reading your list of porn sites, you could encode them
though this method would stop a normal user from decyphering your
contents It will not stop a anyone whom is familar with base64 encoding
and if your dealing with web servers etc user names and passwords are encoded
using base64 and you could add that to your uses.
A sample output of wjackson153:password
label1.caption := EncodeStringBase64('wjackson153:password');
output would look like d2phY2tzb24xNTM6cGFzc3dvcmQ=
label1.caption :=DecodeStringBase64('d2phY2tzb24xNTM6cGFzc3dvcmQ=');