diff --git a/docs/manual/CoreTasks/checksum.html b/docs/manual/CoreTasks/checksum.html index 92fa0d946..a6dbcbe28 100644 --- a/docs/manual/CoreTasks/checksum.html +++ b/docs/manual/CoreTasks/checksum.html @@ -76,7 +76,7 @@ or set the fileext attribute. algorithm Specifies the algorithm to be used to compute the checksum. Defaults to "MD5". - Other popular algorithms like "SHA" may be used + Other popular algorithms like "SHA" or "SHA-512" may be used as well. No @@ -214,8 +214,8 @@ Generates a MD5 checksum for foo.bar, compares it against foo.bar.MD5 and sets isMD5ok to either true or false, depending upon the result.

Example 5

-
<checksum file="foo.bar" algorithm="SHA" fileext="asc"/>
-Generates a SHA checksum for foo.bar and stores the checksum in the destination file +
<checksum file="foo.bar" algorithm="SHA-512" fileext="asc"/>
+Generates a SHA-512 checksum for foo.bar and stores the checksum in the destination file foo.bar.asc. foo.bar.asc is overwritten only if foo.bar is newer than itself.

Example 6