Skip to content

Commit

Permalink
Crontab: update documentation files.
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Oct 29, 2013
1 parent e15c254 commit 1f6efb3
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
18 changes: 18 additions & 0 deletions app/views/App/apps/horde/docs/CODING_STANDARDS.html
Expand Up @@ -69,6 +69,10 @@ <h1 class="title">Horde Coding Standards</h1>
<li><a class="reference internal" href="#fpassthru" id="id46">31.1&nbsp;&nbsp;&nbsp;fpassthru()</a></li>
</ul>
</li>
<li><a class="reference internal" href="#hashing-algorithm" id="id47">32&nbsp;&nbsp;&nbsp;Hashing Algorithm</a><ul class="auto-toc">
<li><a class="reference internal" href="#sha-1" id="id48">32.1&nbsp;&nbsp;&nbsp;SHA-1</a></li>
</ul>
</li>
</ul>
</div>
<div class="section" id="indenting-whitespace">
Expand Down Expand Up @@ -806,4 +810,18 @@ <h2><a class="toc-backref" href="#id46">31.1&nbsp;&nbsp;&nbsp;fpassthru()</a></h
</pre>
</div>
</div>
<div class="section" id="hashing-algorithm">
<h1><a class="toc-backref" href="#id47">32&nbsp;&nbsp;&nbsp;Hashing Algorithm</a></h1>
<div class="section" id="sha-1">
<h2><a class="toc-backref" href="#id48">32.1&nbsp;&nbsp;&nbsp;SHA-1</a></h2>
<p>SHA-1 is the recommended algorithm to use for non-cryptographic hashing
actions:</p>
<pre class="literal-block">
$hash = hash('sha1', $string);
</pre>
<p>MD5 should NOT be used, as it has known collision issues. (NOTE: SHA-1 hashes
are 160-bit vs. MD5 hashes which are 128-bit; care needs to be taken if
switching between methods regarding storage side of the hash string).</p>
</div>
</div>
</div>
2 changes: 2 additions & 0 deletions app/views/App/apps/mnemo/docs/CHANGES.html
Expand Up @@ -3,6 +3,8 @@ <h3>Changes by Release</h3><pre>
v4.1.2-git
----------

[mjr] Fix removing a list of UIDs via the API (<a href="http://bugs.horde.org/ticket/12790">Bug #12790</a>,
thomas.jarosch@intra2net.com)
[mjr] Fix exporting memos as v-note (horde@albasoft.com, <a href="http://bugs.horde.org/ticket/12622">Bug #12622</a>).


Expand Down

0 comments on commit 1f6efb3

Please sign in to comment.