Blame cbits/cryptonite_skein.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_SKEIN_H
Packit 141393
#define CRYPTOHASH_SKEIN_H
Packit 141393
Packit 141393
#define SKEIN_VERSION 1ULL
Packit 141393
#define SKEIN_IDSTRING 0x33414853ULL
Packit 141393
Packit 141393
/*
Packit 141393
t0 0-63 || t1 64-127
Packit 141393
0-95      96-111      112-118    119     120-125  126    127
Packit 141393
Position  reserved    TreeLevel  BitPad  Type     First  Final
Packit 141393
*/
Packit 141393
#define FLAG_FIRST   (1ULL << 62)
Packit 141393
#define FLAG_FINAL   (1ULL << 63)
Packit 141393
#define FLAG_TYPE(x) (((uint64_t) ((x) & 0x3f)) << 56)
Packit 141393
Packit 141393
#define TYPE_KEY     0x00
Packit 141393
#define TYPE_CFG     0x04
Packit 141393
#define TYPE_MSG     0x30
Packit 141393
#define TYPE_OUT     0x3f
Packit 141393
Packit 141393
#define SET_TYPE(ctx, ty) ctx->t0 = 0; ctx->t1 = (ty)
Packit 141393
Packit 141393
#endif