Blame cbits/cryptonite_skein512.h

Packit 141393
/*
Packit 141393
 * Copyright (C) 2006-2010 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_SKEIN512_H
Packit 141393
#define CRYPTOHASH_SKEIN512_H
Packit 141393
Packit 141393
#include <stdint.h>
Packit 141393
Packit 141393
struct skein512_ctx
Packit 141393
{
Packit 141393
	uint8_t  buf[64];
Packit 141393
	uint64_t h[8];
Packit 141393
	uint64_t t0;
Packit 141393
	uint64_t t1;
Packit 141393
	uint32_t bufindex;
Packit 141393
};
Packit 141393
Packit 141393
#define SKEIN512_CTX_SIZE		sizeof(struct skein512_ctx)
Packit 141393
Packit 141393
void cryponite_skein512_init(struct skein512_ctx *ctx, uint32_t hashlen);
Packit 141393
void cryponite_skein512_update(struct skein512_ctx *ctx, const uint8_t *data, uint32_t len);
Packit 141393
void cryponite_skein512_finalize(struct skein512_ctx *ctx, uint32_t hashlen, uint8_t *out);
Packit 141393
Packit 141393
#endif