Thu Apr 28 2011 16:56:47

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: 153365 $")
00032 
00033 #include "asterisk/module.h"
00034 #include "asterisk/pbx.h"
00035 
00036 /*** DOCUMENTATION
00037    <function name="MD5" language="en_US">
00038       <synopsis>
00039          Computes an MD5 digest.
00040       </synopsis>
00041       <syntax>
00042          <parameter name="data" required="true" />
00043       </syntax>
00044       <description>
00045          <para>Computes an MD5 digest.</para>
00046       </description>
00047    </function>
00048  ***/
00049 
00050 static int md5(struct ast_channel *chan, const char *cmd, char *data,
00051           char *buf, size_t len)
00052 {
00053    if (ast_strlen_zero(data)) {
00054       ast_log(LOG_WARNING, "Syntax: MD5(<data>) - missing argument!\n");
00055       return -1;
00056    }
00057 
00058    ast_md5_hash(buf, data);
00059    buf[32] = '\0';
00060 
00061    return 0;
00062 }
00063 
00064 static struct ast_custom_function md5_function = {
00065    .name = "MD5",
00066    .read = md5,
00067 };
00068 
00069 static int unload_module(void)
00070 {
00071    return ast_custom_function_unregister(&md5_function);
00072 }
00073 
00074 static int load_module(void)
00075 {
00076    return ast_custom_function_register(&md5_function);
00077 }
00078 
00079 AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "MD5 digest dialplan functions");