aboutsummaryrefslogtreecommitdiffstats
path: root/funcs
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-01-30 18:36:56 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-01-30 18:36:56 +0000
commit1241cff7121cc74b45aced5b27599462bf77d375 (patch)
tree65dcc96534bc8c316c23eca87b7254ef73a5c0d6 /funcs
parent68c38c68fb1320cadee294424923a1fa2de9629a (diff)
Parameter position reversed in documentation
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@172548 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'funcs')
-rw-r--r--funcs/func_aes.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/funcs/func_aes.c b/funcs/func_aes.c
index 40dafab1c..87319fa77 100644
--- a/funcs/func_aes.c
+++ b/funcs/func_aes.c
@@ -40,12 +40,12 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
Encrypt a string with AES given a 16 character key.
</synopsis>
<syntax>
- <parameter name="string" required="true">
- <para>Input string</para>
- </parameter>
<parameter name="key" required="true">
<para>AES Key</para>
</parameter>
+ <parameter name="string" required="true">
+ <para>Input string</para>
+ </parameter>
</syntax>
<description>
<para>Returns an AES encrypted string encoded in base64.</para>
@@ -56,13 +56,12 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
Decrypt a string encoded in base64 with AES given a 16 character key.
</synopsis>
<syntax>
- <parameter name="string" required="true">
- <para>Input string.</para>
- </parameter>
<parameter name="key" required="true">
<para>AES Key</para>
</parameter>
-
+ <parameter name="string" required="true">
+ <para>Input string.</para>
+ </parameter>
</syntax>
<description>
<para>Returns the plain text string.</para>