diff options
author | lathama <lathama@f38db490-d61c-443f-a65b-d21fe96a405b> | 2011-01-14 19:30:10 +0000 |
---|---|---|
committer | lathama <lathama@f38db490-d61c-443f-a65b-d21fe96a405b> | 2011-01-14 19:30:10 +0000 |
commit | f7ff035fbb5b7947039f07c2e63c3c4469463cde (patch) | |
tree | 095c5da6fdb02b0f8d6f8baa6b655c320da7a2f4 | |
parent | 45c0ebfbb66d1643bde5d50b564020e703a45a55 (diff) |
Add relationships to function documentation.
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.2@301842 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r-- | funcs/func_aes.c | 10 | ||||
-rw-r--r-- | funcs/func_base64.c | 10 |
2 files changed, 20 insertions, 0 deletions
diff --git a/funcs/func_aes.c b/funcs/func_aes.c index 87319fa77..e1a2d326e 100644 --- a/funcs/func_aes.c +++ b/funcs/func_aes.c @@ -50,6 +50,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> @@ -66,6 +71,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 6f1fc19ea..9b71f905c 100644 --- a/funcs/func_base64.c +++ b/funcs/func_base64.c @@ -43,6 +43,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> @@ -56,6 +61,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> ***/ |