hash-method.c revision a8c5a86d183db25a57bf193c06b41e092ec2e151
/* Copyright (c) 2010-2014 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "md4.h"
#include "md5.h"
#include "sha1.h"
#include "sha2.h"
#include "hash-method.h"
const struct hash_method *hash_method_lookup(const char *name)
{
unsigned int i;
for (i = 0; hash_methods[i] != NULL; i++) {
if (strcmp(hash_methods[i]->name, name) == 0)
return hash_methods[i];
}
return NULL;
}
static void hash_method_init_size(void *context)
{
uint64_t *ctx = context;
*ctx = 0;
}
static void
hash_method_loop_size(void *context, const void *data ATTR_UNUSED, size_t size)
{
uint64_t *ctx = context;
*ctx += size;
}
static void hash_method_result_size(void *context, unsigned char *result_r)
{
uint64_t *ctx = context;
result_r[0] = (*ctx & 0xff00000000000000ULL) >> 56;
result_r[1] = (*ctx & 0x00ff000000000000ULL) >> 48;
result_r[2] = (*ctx & 0x0000ff0000000000ULL) >> 40;
result_r[3] = (*ctx & 0x000000ff00000000ULL) >> 32;
result_r[4] = (*ctx & 0x00000000ff000000ULL) >> 24;
result_r[5] = (*ctx & 0x0000000000ff0000ULL) >> 16;
result_r[6] = (*ctx & 0x000000000000ff00ULL) >> 8;
result_r[7] = (*ctx & 0x00000000000000ffULL);
}
const struct hash_method hash_method_size = {
"size",
sizeof(uint64_t),
sizeof(uint64_t),
hash_method_init_size,
hash_method_loop_size,
hash_method_result_size
};
const struct hash_method *hash_methods[] = {
&hash_method_md4,
&hash_method_md5,
&hash_method_sha1,
&hash_method_sha256,
&hash_method_sha512,
&hash_method_size,
NULL
};