|
From: <cre...@us...> - 2006-06-01 00:10:12
|
Revision: 1394 Author: creecode Date: 2006-05-31 17:10:05 -0700 (Wed, 31 May 2006) ViewCVS: http://svn.sourceforge.net/frontierkernel/?rev=1394&view=rev Log Message: ----------- tried to make these a bit more descriptive Modified Paths: -------------- ODBs/trunk/docServerRoot/docServerData/formats/outline/crypt/cramMD5.fvc ODBs/trunk/docServerRoot/docServerData/formats/outline/crypt/cramSHA1.fvc Modified: ODBs/trunk/docServerRoot/docServerData/formats/outline/crypt/cramMD5.fvc =================================================================== --- ODBs/trunk/docServerRoot/docServerData/formats/outline/crypt/cramMD5.fvc 2006-05-26 17:26:41 UTC (rev 1393) +++ ODBs/trunk/docServerRoot/docServerData/formats/outline/crypt/cramMD5.fvc 2006-06-01 00:10:05 UTC (rev 1394) @@ -7,8 +7,11 @@ password, a string. challenge, a string. Action + Computes a challenge-response authentication mechanism (CRAM) response using MD5. Returns + A string that can used as a response to a challenge-response protocol. Examples crypt.cramMD5 ("tim", "tanstaaftanstaaf", base64.decode ("PDE4OTYuNjk3MTcwOTUyQHBvc3RvZmZpY2UucmVzdG9uLm1jaS5uZXQ+")) // "tim b913a602c7eda7a495b4e6e7334d3890" Notes + See < http://en.wikipedia.org/wiki/CRAM-MD5 >. Modified: ODBs/trunk/docServerRoot/docServerData/formats/outline/crypt/cramSHA1.fvc =================================================================== --- ODBs/trunk/docServerRoot/docServerData/formats/outline/crypt/cramSHA1.fvc 2006-05-26 17:26:41 UTC (rev 1393) +++ ODBs/trunk/docServerRoot/docServerData/formats/outline/crypt/cramSHA1.fvc 2006-06-01 00:10:05 UTC (rev 1394) @@ -7,7 +7,9 @@ password, a string. challenge, a string. Action + Computes a challenge-response authentication mechanism (CRAM) response using SHA1. Returns + A string that can used as a response to a challenge-response protocol. Examples crypt.cramSHA1 ("tim", "tanstaaftanstaaf", base64.decode ("PDE4OTYuNjk3MTcwOTUyQHBvc3RvZmZpY2UucmVzdG9uLm1jaS5uZXQ+")) // "tim 8cb10ed0a8b764ab0e05125dd6eaa295f19b5943" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |