[svn-commits] tilghman: trunk r172548 - /trunk/funcs/func_aes.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Fri Jan 30 12:36:56 CST 2009
Author: tilghman
Date: Fri Jan 30 12:36:56 2009
New Revision: 172548
URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=172548
Log:
Parameter position reversed in documentation
Modified:
trunk/funcs/func_aes.c
Modified: trunk/funcs/func_aes.c
URL: http://svn.digium.com/svn-view/asterisk/trunk/funcs/func_aes.c?view=diff&rev=172548&r1=172547&r2=172548
==============================================================================
--- trunk/funcs/func_aes.c (original)
+++ trunk/funcs/func_aes.c Fri Jan 30 12:36:56 2009
@@ -40,11 +40,11 @@
Encrypt a string with AES given a 16 character key.
</synopsis>
<syntax>
+ <parameter name="key" required="true">
+ <para>AES Key</para>
+ </parameter>
<parameter name="string" required="true">
<para>Input string</para>
- </parameter>
- <parameter name="key" required="true">
- <para>AES Key</para>
</parameter>
</syntax>
<description>
@@ -56,13 +56,12 @@
Decrypt a string encoded in base64 with AES given a 16 character key.
</synopsis>
<syntax>
+ <parameter name="key" required="true">
+ <para>AES Key</para>
+ </parameter>
<parameter name="string" required="true">
<para>Input string.</para>
</parameter>
- <parameter name="key" required="true">
- <para>AES Key</para>
- </parameter>
-
</syntax>
<description>
<para>Returns the plain text string.</para>
More information about the svn-commits
mailing list