diff --git a/funcs/func_aes.c b/funcs/func_aes.c index 7cc8f4d575a164d59ce469507922255b67a00f45..15681442f33515358342e1eb41cc201a7a5ae462 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 34c6ec6ae90c74ec4fedab64174b5a83de948d94..bebbe89595080b0ad8a2e35fc7b5fa8b41ae2b9b 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> ***/