Update doc/efun/ aus Driversourcen.

Manpages der efuns aktualisiert, neue Manpages hinzugefuegt.

Change-Id: I7cc91684269ff56d1aef47d5c5e7c87f7fd531dc
diff --git a/doc/efun/md5_crypt b/doc/efun/md5_crypt
index 2dffbdc..422058c 100644
--- a/doc/efun/md5_crypt
+++ b/doc/efun/md5_crypt
@@ -1,22 +1,24 @@
 SYNOPSIS
         string md5_crypt(string str, int seed)
         string md5_crypt(string str, string seed)
-        string md5_crypt(bytes  str, int seed)
-        string md5_crypt(bytes  str, string seed)
+        string md5_crypt(bytes str, int seed)
+        string md5_crypt(bytes str, string seed)
 
-BESCHREIBUNG
-        Verschluesselt den String <str> mit dem Schluessel <seed>.
-        <seed> kann entweder ein Integer sein oder zwei Zeichen aus
-        dem String <seed>.  Wenn <seed> 0 ist, wird ein zufaelliger
-        Schluessel erzeugt.
+DESCRIPTION
+        Crypt the string <str> the first two characters
+        from the string <seed> as a seed. If <seed> is an integer, then
+        a random seed is used.
 
-        Das Resultat enthaelt den Schluessel als die ersten beiden Zeichen.
+        The result has the first two characters as the seed.
 
-        Die Efun verwendet den MD5-Algorithmus, und das Resultat ist
-        kompatible mit der Passwordverschluesselung des Apache Webservers.
+        The efun uses the MD5 algorithm for encryption, and the result
+        is compatible with the Apache password encryption.
 
-        Fuer Passwortabfragen, die ohne Echo eingegeben werden koennen sollen,
-        bietet input_to() ein spezielles Flag.
+        If you want to let enter password information without echo,
+        input_to() can be used with special argument.
 
-SIEHE AUCH
-        crypt(E), md5(E), sha1(E), input_to(E)
+HISTORY
+        Introduced in LDMud 3.3
+
+SEE ALSO
+        crypt(E), input_to(E), md5(E), md5_crypt(E), hash(E), hmac(E)