Wed Aug 18 22:33:52 2010

Asterisk developer's documentation


func_md5.c

Go to the documentation of this file.
00001 /*
00002  * Asterisk -- An open source telephony toolkit.
00003  *
00004  * Copyright (C) 2005-2006, Digium, Inc.
00005  * Copyright (C) 2005, Olle E. Johansson, Edvina.net
00006  * Copyright (C) 2005, Russell Bryant <russelb@clemson.edu> 
00007  *
00008  * See http://www.asterisk.org for more information about
00009  * the Asterisk project. Please do not directly contact
00010  * any of the maintainers of this project for assistance;
00011  * the project provides a web site, mailing lists and IRC
00012  * channels for your use.
00013  *
00014  * This program is free software, distributed under the terms of
00015  * the GNU General Public License Version 2. See the LICENSE file
00016  * at the top of the source tree.
00017  */
00018 
00019 /*! \file
00020  *
00021  * \brief MD5 digest related dialplan functions
00022  * 
00023  * \author Olle E. Johansson <oej@edvina.net>
00024  * \author Russell Bryant <russelb@clemson.edu>
00025  *
00026  * \ingroup functions
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");

Generated on Wed Aug 18 22:33:52 2010 for Asterisk - the Open Source PBX by  doxygen 1.4.7