func_md5.c
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 #include "asterisk.h"
00030
00031 ASTERISK_FILE_VERSION(__FILE__, "$Revision: 89521 $")
00032
00033 #include "asterisk/module.h"
00034 #include "asterisk/pbx.h"
00035
00036 static int md5(struct ast_channel *chan, const char *cmd, char *data,
00037 char *buf, size_t len)
00038 {
00039 if (ast_strlen_zero(data)) {
00040 ast_log(LOG_WARNING, "Syntax: MD5(<data>) - missing argument!\n");
00041 return -1;
00042 }
00043
00044 ast_md5_hash(buf, data);
00045 buf[32] = '\0';
00046
00047 return 0;
00048 }
00049
00050 static struct ast_custom_function md5_function = {
00051 .name = "MD5",
00052 .synopsis = "Computes an MD5 digest",
00053 .syntax = "MD5(<data>)",
00054 .read = md5,
00055 };
00056
00057 static int unload_module(void)
00058 {
00059 return ast_custom_function_unregister(&md5_function);
00060 }
00061
00062 static int load_module(void)
00063 {
00064 return ast_custom_function_register(&md5_function);
00065 }
00066
00067 AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "MD5 digest dialplan functions");