2 * Asterisk -- An open source telephony toolkit.
4 * Copyright (C) 1999 - 2005, Digium, Inc.
6 * Mark Spencer <markster@digium.com>
8 * See http://www.asterisk.org for more information about
9 * the Asterisk project. Please do not directly contact
10 * any of the maintainers of this project for assistance;
11 * the project provides a web site, mailing lists and IRC
12 * channels for your use.
14 * This program is free software, distributed under the terms of
15 * the GNU General Public License Version 2. See the LICENSE file
16 * at the top of the source tree.
21 * \brief Stubs for res_crypto routines
23 * \author Mark Spencer <markster@digium.com>
29 #include "asterisk/crypto.h"
30 #include "asterisk/logger.h"
32 /* Hrm, I wonder if the compiler is smart enough to only create two functions
33 for all these... I could force it to only make two, but those would be some
34 really nasty looking casts. */
36 static struct ast_key *stub_ast_key_get(const char *kname, int ktype)
38 ast_log(LOG_NOTICE, "Crypto support not loaded!\n");
42 static int stub_ast_check_signature(struct ast_key *key, const char *msg, const char *sig)
44 ast_log(LOG_NOTICE, "Crypto support not loaded!\n");
48 static int stub_ast_check_signature_bin(struct ast_key *key, const char *msg, int msglen, const unsigned char *sig)
50 ast_log(LOG_NOTICE, "Crypto support not loaded!\n");
54 static int stub_ast_sign(struct ast_key *key, char *msg, char *sig)
56 ast_log(LOG_NOTICE, "Crypto support not loaded!\n");
60 static int stub_ast_sign_bin(struct ast_key *key, const char *msg, int msglen, unsigned char *sig)
62 ast_log(LOG_NOTICE, "Crypto support not loaded!\n");
66 static int stub_ast_encdec_bin(unsigned char *dst, const unsigned char *src, int srclen, struct ast_key *key)
68 ast_log(LOG_NOTICE, "Crypto support not loaded!\n");
72 struct ast_key *(*ast_key_get)(const char *key, int type) =
75 int (*ast_check_signature)(struct ast_key *key, const char *msg, const char *sig) =
76 stub_ast_check_signature;
78 int (*ast_check_signature_bin)(struct ast_key *key, const char *msg, int msglen, const unsigned char *sig) =
79 stub_ast_check_signature_bin;
81 int (*ast_sign)(struct ast_key *key, char *msg, char *sig) =
84 int (*ast_sign_bin)(struct ast_key *key, const char *msg, int msglen, unsigned char *sig) =
87 int (*ast_encrypt_bin)(unsigned char *dst, const unsigned char *src, int srclen, struct ast_key *key) =
90 int (*ast_decrypt_bin)(unsigned char *dst, const unsigned char *src, int srclen, struct ast_key *key) =