~ubuntu-branches/ubuntu/oneiric/strongswan/oneiric

« back to all changes in this revision

Viewing changes to src/libstrongswan/plugins/md4/md4_plugin.c

  • Committer: Bazaar Package Importer
  • Author(s): Rene Mayrhofer
  • Date: 2009-04-01 22:17:52 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20090401221752-eozrk0ctabblo94z
* New upstream release, which incorporates the fix. Removed dpatch for it.
  Closes: #521950: CVE-2009-0790: DoS
* New support for EAP RADIUS authentication, enabled for this package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2008 Martin Willi
 
3
 * Hochschule fuer Technik Rapperswil
 
4
 *
 
5
 * This program is free software; you can redistribute it and/or modify it
 
6
 * under the terms of the GNU General Public License as published by the
 
7
 * Free Software Foundation; either version 2 of the License, or (at your
 
8
 * option) any later version.  See <http://www.fsf.org/copyleft/gpl.txt>.
 
9
 *
 
10
 * This program is distributed in the hope that it will be useful, but
 
11
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 
12
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 
13
 * for more details.
 
14
 *
 
15
 * $Id: md4_plugin.c 4885 2009-02-19 10:16:45Z andreas $
 
16
 */
 
17
 
 
18
#include "md4_plugin.h"
 
19
 
 
20
#include <library.h>
 
21
#include "md4_hasher.h"
 
22
 
 
23
typedef struct private_md4_plugin_t private_md4_plugin_t;
 
24
 
 
25
/**
 
26
 * private data of md4_plugin
 
27
 */
 
28
struct private_md4_plugin_t {
 
29
 
 
30
        /**
 
31
         * public functions
 
32
         */
 
33
        md4_plugin_t public;
 
34
};
 
35
 
 
36
/**
 
37
 * Implementation of md4_plugin_t.destroy
 
38
 */
 
39
static void destroy(private_md4_plugin_t *this)
 
40
{
 
41
        lib->crypto->remove_hasher(lib->crypto,
 
42
                                                           (hasher_constructor_t)md4_hasher_create);
 
43
        free(this);
 
44
}
 
45
 
 
46
/*
 
47
 * see header file
 
48
 */
 
49
plugin_t *plugin_create()
 
50
{
 
51
        private_md4_plugin_t *this = malloc_thing(private_md4_plugin_t);
 
52
        
 
53
        this->public.plugin.destroy = (void(*)(plugin_t*))destroy;
 
54
        
 
55
        lib->crypto->add_hasher(lib->crypto, HASH_MD4,
 
56
                                                        (hasher_constructor_t)md4_hasher_create);
 
57
        
 
58
        return &this->public.plugin;
 
59
}
 
60