|
gsasl
1.8.0
|
00001 /* mechinfo.c --- Definition of SCRAM mechanism. 00002 * Copyright (C) 2009-2012 Simon Josefsson 00003 * 00004 * This file is part of GNU SASL Library. 00005 * 00006 * GNU SASL Library is free software; you can redistribute it and/or 00007 * modify it under the terms of the GNU Lesser General Public License 00008 * as published by the Free Software Foundation; either version 2.1 of 00009 * the License, or (at your option) any later version. 00010 * 00011 * GNU SASL Library is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00014 * Lesser General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU Lesser General Public 00017 * License along with GNU SASL Library; if not, write to the Free 00018 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00019 * Boston, MA 02110-1301, USA. 00020 * 00021 */ 00022 00023 #ifdef HAVE_CONFIG_H 00024 #include "config.h" 00025 #endif 00026 00027 /* Get specification. */ 00028 #include "scram.h" 00029 00030 #ifdef USE_SCRAM_SHA1 00031 Gsasl_mechanism gsasl_scram_sha1_mechanism = { 00032 GSASL_SCRAM_SHA1_NAME, 00033 { 00034 NULL, 00035 NULL, 00036 #ifdef USE_CLIENT 00037 _gsasl_scram_sha1_client_start, 00038 _gsasl_scram_sha1_client_step, 00039 _gsasl_scram_sha1_client_finish, 00040 #else 00041 NULL, 00042 NULL, 00043 NULL, 00044 #endif 00045 NULL, 00046 NULL} 00047 , 00048 { 00049 NULL, 00050 NULL, 00051 #ifdef USE_SERVER 00052 _gsasl_scram_sha1_server_start, 00053 _gsasl_scram_sha1_server_step, 00054 _gsasl_scram_sha1_server_finish, 00055 #else 00056 NULL, 00057 NULL, 00058 NULL, 00059 #endif 00060 NULL, 00061 NULL} 00062 }; 00063 #endif 00064 00065 00066 #ifdef USE_SCRAM_SHA1 00067 Gsasl_mechanism gsasl_scram_sha1_plus_mechanism = { 00068 GSASL_SCRAM_SHA1_PLUS_NAME, 00069 { 00070 NULL, 00071 NULL, 00072 #ifdef USE_CLIENT 00073 _gsasl_scram_sha1_plus_client_start, 00074 _gsasl_scram_sha1_client_step, 00075 _gsasl_scram_sha1_client_finish, 00076 #else 00077 NULL, 00078 NULL, 00079 NULL, 00080 #endif 00081 NULL, 00082 NULL} 00083 , 00084 { 00085 NULL, 00086 NULL, 00087 #ifdef USE_SERVER 00088 _gsasl_scram_sha1_plus_server_start, 00089 _gsasl_scram_sha1_server_step, 00090 _gsasl_scram_sha1_server_finish, 00091 #else 00092 NULL, 00093 NULL, 00094 NULL, 00095 #endif 00096 NULL, 00097 NULL} 00098 }; 00099 #endif
1.7.6.1