NAME
	encrypt - encrypt a string

SYNOPSIS
	mixed encrypt(string cipher, string key, varargs string mesg)


DESCRIPTION
	For any given cipher, encrypt("CIPHER key", key) returns a key prepared
	for encryption, and encrypt("CIPHER", prepared_key, str) encrypts a
	string.
	The only currently defined cipher is DES.

SEE ALSO
	kfun/decrypt
