chiark / gitweb /
correct hex() for 0 length outputs
[disorder] / lib / authhash.c
CommitLineData
460b9539 1/*
2 * This file is part of DisOrder
3 * Copyright (C) 2004, 2006 Richard Kettlewell
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
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
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18 * USA
19 */
20
21#include <config.h>
22#include "types.h"
23
24#include <stddef.h>
25#include <gcrypt.h>
1c0d78bd 26#include <assert.h>
460b9539 27
28#include "hex.h"
29#include "log.h"
30#include "authhash.h"
31
32#ifndef AUTHHASH
d7b6f0d1 33/** @brief Which hash function to use */
460b9539 34# define AUTHHASH GCRY_MD_SHA1
35#endif
36
d7b6f0d1 37/** @brief Perform the authorization hash function
38 * @param challenge Pointer to challange
39 * @param nchallenge Size of challenge
40 * @param password Password
41 *
42 * Computes H(challenge|password) and returns it as a newly allocated hex
43 * string. Currently the hash function is SHA-1, but this may be changed in
44 * future versions; see @ref AUTHHASH.
45 */
460b9539 46const char *authhash(const void *challenge, size_t nchallenge,
47 const char *password) {
48 gcrypt_hash_handle h;
49 const char *res;
1c0d78bd
RK
50
51 assert(challenge != 0);
52 assert(password != 0);
460b9539 53#if HAVE_GCRY_ERROR_T
54 {
55 gcry_error_t e;
56
57 if((e = gcry_md_open(&h, AUTHHASH, 0))) {
58 error(0, "gcry_md_open: %s", gcry_strerror(e));
59 return 0;
60 }
61 }
62#else
63 h = gcry_md_open(AUTHHASH, 0);
64#endif
65 gcry_md_write(h, password, strlen(password));
66 gcry_md_write(h, challenge, nchallenge);
67 res = hex(gcry_md_read(h, AUTHHASH), gcry_md_get_algo_dlen(AUTHHASH));
68 gcry_md_close(h);
69 return res;
70}
71
72/*
73Local Variables:
74c-basic-offset:2
75comment-column:40
76fill-column:79
77End:
78*/