Module "crypt"
==============

A crypt() function (like in C).
 
builtin crypt(key, salt);
-------------------------

This function is a frontend to the C crypt() function. If salt is not given
or shorten then 2 characters then a random salt ([a-zA-Z0-9./]{2}) is used.
 
