aboutsummaryrefslogtreecommitdiffstats
path: root/funcs
diff options
context:
space:
mode:
authorlathama <lathama@f38db490-d61c-443f-a65b-d21fe96a405b>2011-01-14 19:35:20 +0000
committerlathama <lathama@f38db490-d61c-443f-a65b-d21fe96a405b>2011-01-14 19:35:20 +0000
commitca2a7534de3342d407ab55f4dc085c092630578f (patch)
tree334ee3d1c66631eac57afd36ae64bf5c1f2698ea /funcs
parent9968bd1681491d840d1a2831c63a511168a4858f (diff)
Add relationships to function documentation.
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.8@301844 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'funcs')
-rw-r--r--funcs/func_aes.c10
-rw-r--r--funcs/func_base64.c10
2 files changed, 20 insertions, 0 deletions
diff --git a/funcs/func_aes.c b/funcs/func_aes.c
index 7cc8f4d57..15681442f 100644
--- a/funcs/func_aes.c
+++ b/funcs/func_aes.c
@@ -53,6 +53,11 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
<description>
<para>Returns an AES encrypted string encoded in base64.</para>
</description>
+ <see-also>
+ <ref type="application">AES_DECRYPT</ref>
+ <ref type="application">BASE64_ENCODE</ref>
+ <ref type="application">BASE64_DECODE</ref>
+ </see-also>
</function>
<function name="AES_DECRYPT" language="en_US">
<synopsis>
@@ -69,6 +74,11 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
<description>
<para>Returns the plain text string.</para>
</description>
+ <see-also>
+ <ref type="application">AES_ENCRYPT</ref>
+ <ref type="application">BASE64_ENCODE</ref>
+ <ref type="application">BASE64_DECODE</ref>
+ </see-also>
</function>
***/
diff --git a/funcs/func_base64.c b/funcs/func_base64.c
index 34c6ec6ae..bebbe8959 100644
--- a/funcs/func_base64.c
+++ b/funcs/func_base64.c
@@ -44,6 +44,11 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
<description>
<para>Returns the base64 string.</para>
</description>
+ <see-also>
+ <ref type="application">BASE64_DECODE</ref>
+ <ref type="application">AES_DECRYPT</ref>
+ <ref type="application">AES_ENCRYPT</ref>
+ </see-also>
</function>
<function name="BASE64_DECODE" language="en_US">
<synopsis>
@@ -57,6 +62,11 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
<description>
<para>Returns the plain text string.</para>
</description>
+ <see-also>
+ <ref type="application">BASE64_ENCODE</ref>
+ <ref type="application">AES_DECRYPT</ref>
+ <ref type="application">AES_ENCRYPT</ref>
+ </see-also>
</function>
***/