Blame cbits/cryptonite_tiger.h

Packit 141393
/*
Packit 141393
 * Copyright (C) 2006-2009 Vincent Hanquez <vincent@snarc.org>
Packit 141393
 *
Packit 141393
 * Redistribution and use in source and binary forms, with or without
Packit 141393
 * modification, are permitted provided that the following conditions
Packit 141393
 * are met:
Packit 141393
 * 1. Redistributions of source code must retain the above copyright
Packit 141393
 *    notice, this list of conditions and the following disclaimer.
Packit 141393
 * 2. Redistributions in binary form must reproduce the above copyright
Packit 141393
 *    notice, this list of conditions and the following disclaimer in the
Packit 141393
 *    documentation and/or other materials provided with the distribution.
Packit 141393
 *
Packit 141393
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
Packit 141393
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
Packit 141393
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
Packit 141393
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
Packit 141393
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
Packit 141393
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
Packit 141393
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
Packit 141393
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
Packit 141393
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
Packit 141393
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Packit 141393
 */
Packit 141393
#ifndef CRYPTOHASH_TIGER_H
Packit 141393
#define CRYPTOHASH_TIGER_H
Packit 141393
Packit 141393
#include <stdint.h>
Packit 141393
Packit 141393
struct tiger_ctx
Packit 141393
{
Packit 141393
	uint64_t sz;
Packit 141393
	uint8_t  buf[64];
Packit 141393
	uint64_t h[3];
Packit 141393
};
Packit 141393
Packit 141393
#define TIGER_DIGEST_SIZE	24
Packit 141393
#define TIGER_CTX_SIZE 		(sizeof(struct tiger_ctx))
Packit 141393
Packit 141393
void cryptonite_tiger_init(struct tiger_ctx *ctx);
Packit 141393
void cryptonite_tiger_update(struct tiger_ctx *ctx, const uint8_t *data, uint32_t len);
Packit 141393
void cryptonite_tiger_finalize(struct tiger_ctx *ctx, uint8_t *out);
Packit 141393
Packit 141393
#endif