gsasl-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

CVS gsasl/lib/digest-md5


From: gsasl-commit
Subject: CVS gsasl/lib/digest-md5
Date: Fri, 24 Sep 2004 16:07:37 +0200

Update of /home/cvs/gsasl/lib/digest-md5
In directory dopio:/tmp/cvs-serv14688/lib/digest-md5

Modified Files:
        Makefile.am digest-md5.h 
Added Files:
        mechinfo.c 
Log Message:
Move mechanism definitions from src/common.c into */mechinfo.c.


--- /home/cvs/gsasl/lib/digest-md5/Makefile.am  2004/09/23 23:38:59     1.11
+++ /home/cvs/gsasl/lib/digest-md5/Makefile.am  2004/09/24 14:07:37     1.12
@@ -23,7 +23,7 @@
        -I$(srcdir)/../gl -I../crypto
 
 noinst_LTLIBRARIES = libgsasl-digest_md5.la
-libgsasl_digest_md5_la_SOURCES = digest-md5.h \
+libgsasl_digest_md5_la_SOURCES = digest-md5.h mechinfo.c \
        shared.h shared.c \
        session.h session.c \
        getsubopt.c
--- /home/cvs/gsasl/lib/digest-md5/digest-md5.h 2004/09/24 00:24:56     1.5
+++ /home/cvs/gsasl/lib/digest-md5/digest-md5.h 2004/09/24 14:07:37     1.6
@@ -25,7 +25,9 @@
 
 #include "internal.h"
 
-#define _GSASL_DIGEST_MD5_NAME "DIGEST-MD5"
+#define GSASL_DIGEST_MD5_NAME "DIGEST-MD5"
+
+extern Gsasl_mechanism gsasl_digest_md5_mechanism;
 
 extern int _gsasl_digest_md5_client_start (Gsasl_session_ctx * sctx,
                                           void **mech_data);

--- /home/cvs/gsasl/lib/digest-md5/mechinfo.c   2004/09/24 14:07:37     NONE
+++ /home/cvs/gsasl/lib/digest-md5/mechinfo.c   2004/09/24 14:07:37     1.1
/* mechinfo.c --- Definition of DIGEST-MD5 mechanism.
 * Copyright (C) 2002, 2003, 2004  Simon Josefsson
 *
 * This file is part of GNU SASL Library.
 *
 * GNU SASL Library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public License
 * as published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * GNU SASL Library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with GNU SASL Library; if not, write to the Free
 * Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
 * 02111-1307 USA
 *
 */

#if HAVE_CONFIG_H
# include "config.h"
#endif

/* Get specification. */
#include "digest-md5.h"

Gsasl_mechanism gsasl_digest_md5_mechanism = {
  GSASL_DIGEST_MD5_NAME,
  {
    NULL,
    NULL,
#ifdef USE_CLIENT
    _gsasl_digest_md5_client_start,
#else
    NULL,
#endif
#ifdef USE_CLIENT
    _gsasl_digest_md5_client_step,
#else
    NULL,
#endif
#ifdef USE_CLIENT
    _gsasl_digest_md5_client_finish,
#else
    NULL,
#endif
#ifdef USE_CLIENT
    _gsasl_digest_md5_client_encode,
#else
    NULL,
#endif
#ifdef USE_CLIENT
    _gsasl_digest_md5_client_decode
#else
    NULL
#endif
  },
  {
    NULL,
    NULL,
#ifdef USE_SERVER
    _gsasl_digest_md5_server_start,
#else
    NULL,
#endif
#ifdef USE_SERVER
    _gsasl_digest_md5_server_step,
#else
    NULL,
#endif
#ifdef USE_SERVER
    _gsasl_digest_md5_server_finish,
#else
    NULL,
#endif
#ifdef USE_SERVER
    _gsasl_digest_md5_server_encode,
#else
    NULL,
#endif
#ifdef USE_SERVER
    _gsasl_digest_md5_server_decode
#else
    NULL
#endif
  }
};




reply via email to

[Prev in Thread] Current Thread [Next in Thread]