2013-02-01 16:44:36 +01:00
|
|
|
/*
|
2016-04-22 12:07:57 +02:00
|
|
|
BLAKE2 reference source code package - reference C implementations
|
2016-10-11 22:54:18 +02:00
|
|
|
|
2016-04-22 12:07:57 +02:00
|
|
|
Copyright 2012, Samuel Neves <sneves@dei.uc.pt>. You may use this under the
|
|
|
|
terms of the CC0, the OpenSSL Licence, or the Apache Public License 2.0, at
|
|
|
|
your option. The terms of these licenses can be found at:
|
2016-10-11 22:54:18 +02:00
|
|
|
|
2016-04-22 12:07:57 +02:00
|
|
|
- CC0 1.0 Universal : http://creativecommons.org/publicdomain/zero/1.0
|
|
|
|
- OpenSSL license : https://www.openssl.org/source/license.html
|
|
|
|
- Apache 2.0 : http://www.apache.org/licenses/LICENSE-2.0
|
2016-10-11 22:54:18 +02:00
|
|
|
|
2016-04-22 12:07:57 +02:00
|
|
|
More information about the BLAKE2 hash function can be found at
|
|
|
|
https://blake2.net.
|
2013-02-01 16:44:36 +01:00
|
|
|
*/
|
2016-06-11 11:29:09 +02:00
|
|
|
#ifndef BLAKE2_H
|
|
|
|
#define BLAKE2_H
|
2013-02-01 16:44:36 +01:00
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2016-06-11 01:06:51 +02:00
|
|
|
#if defined(_MSC_VER)
|
|
|
|
#define BLAKE2_PACKED(x) __pragma(pack(push, 1)) x __pragma(pack(pop))
|
|
|
|
#else
|
|
|
|
#define BLAKE2_PACKED(x) x __attribute__((packed))
|
2016-04-22 12:07:57 +02:00
|
|
|
#endif
|
|
|
|
|
2013-02-01 16:44:36 +01:00
|
|
|
#if defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
enum blake2s_constant
|
|
|
|
{
|
|
|
|
BLAKE2S_BLOCKBYTES = 64,
|
|
|
|
BLAKE2S_OUTBYTES = 32,
|
|
|
|
BLAKE2S_KEYBYTES = 32,
|
|
|
|
BLAKE2S_SALTBYTES = 8,
|
|
|
|
BLAKE2S_PERSONALBYTES = 8
|
|
|
|
};
|
|
|
|
|
|
|
|
enum blake2b_constant
|
|
|
|
{
|
|
|
|
BLAKE2B_BLOCKBYTES = 128,
|
|
|
|
BLAKE2B_OUTBYTES = 64,
|
|
|
|
BLAKE2B_KEYBYTES = 64,
|
|
|
|
BLAKE2B_SALTBYTES = 16,
|
|
|
|
BLAKE2B_PERSONALBYTES = 16
|
|
|
|
};
|
|
|
|
|
2016-06-11 12:11:20 +02:00
|
|
|
typedef struct blake2s_state__
|
2013-02-01 16:44:36 +01:00
|
|
|
{
|
|
|
|
uint32_t h[8];
|
|
|
|
uint32_t t[2];
|
|
|
|
uint32_t f[2];
|
2016-06-11 12:11:20 +02:00
|
|
|
uint8_t buf[BLAKE2S_BLOCKBYTES];
|
2013-02-01 16:44:36 +01:00
|
|
|
size_t buflen;
|
2016-06-11 13:42:46 +02:00
|
|
|
size_t outlen;
|
2013-02-01 16:44:36 +01:00
|
|
|
uint8_t last_node;
|
|
|
|
} blake2s_state;
|
|
|
|
|
2016-06-11 12:11:20 +02:00
|
|
|
typedef struct blake2b_state__
|
2013-02-01 16:44:36 +01:00
|
|
|
{
|
|
|
|
uint64_t h[8];
|
|
|
|
uint64_t t[2];
|
|
|
|
uint64_t f[2];
|
2016-06-11 12:11:20 +02:00
|
|
|
uint8_t buf[BLAKE2B_BLOCKBYTES];
|
2013-02-01 16:44:36 +01:00
|
|
|
size_t buflen;
|
2016-06-11 13:42:46 +02:00
|
|
|
size_t outlen;
|
2013-02-01 16:44:36 +01:00
|
|
|
uint8_t last_node;
|
|
|
|
} blake2b_state;
|
|
|
|
|
2016-06-11 12:11:20 +02:00
|
|
|
typedef struct blake2sp_state__
|
2013-02-01 16:44:36 +01:00
|
|
|
{
|
|
|
|
blake2s_state S[8][1];
|
|
|
|
blake2s_state R[1];
|
2016-06-11 12:11:20 +02:00
|
|
|
uint8_t buf[8 * BLAKE2S_BLOCKBYTES];
|
|
|
|
size_t buflen;
|
2016-06-11 13:42:46 +02:00
|
|
|
size_t outlen;
|
2013-02-01 16:44:36 +01:00
|
|
|
} blake2sp_state;
|
|
|
|
|
2016-06-11 12:11:20 +02:00
|
|
|
typedef struct blake2bp_state__
|
2013-02-01 16:44:36 +01:00
|
|
|
{
|
|
|
|
blake2b_state S[4][1];
|
|
|
|
blake2b_state R[1];
|
2016-06-11 12:11:20 +02:00
|
|
|
uint8_t buf[4 * BLAKE2B_BLOCKBYTES];
|
|
|
|
size_t buflen;
|
2016-06-11 13:42:46 +02:00
|
|
|
size_t outlen;
|
2013-02-01 16:44:36 +01:00
|
|
|
} blake2bp_state;
|
2016-02-09 03:39:53 +01:00
|
|
|
|
2016-04-22 12:07:57 +02:00
|
|
|
|
2016-06-11 12:11:20 +02:00
|
|
|
BLAKE2_PACKED(struct blake2s_param__
|
2016-02-09 03:39:53 +01:00
|
|
|
{
|
2016-04-22 12:07:57 +02:00
|
|
|
uint8_t digest_length; /* 1 */
|
|
|
|
uint8_t key_length; /* 2 */
|
|
|
|
uint8_t fanout; /* 3 */
|
|
|
|
uint8_t depth; /* 4 */
|
|
|
|
uint32_t leaf_length; /* 8 */
|
2016-10-11 22:54:18 +02:00
|
|
|
uint32_t node_offset; /* 12 */
|
|
|
|
uint16_t xof_length; /* 14 */
|
2016-04-22 12:07:57 +02:00
|
|
|
uint8_t node_depth; /* 15 */
|
|
|
|
uint8_t inner_length; /* 16 */
|
|
|
|
/* uint8_t reserved[0]; */
|
|
|
|
uint8_t salt[BLAKE2S_SALTBYTES]; /* 24 */
|
|
|
|
uint8_t personal[BLAKE2S_PERSONALBYTES]; /* 32 */
|
2016-06-11 01:06:51 +02:00
|
|
|
});
|
|
|
|
|
2016-06-11 12:11:20 +02:00
|
|
|
typedef struct blake2s_param__ blake2s_param;
|
2016-02-09 03:39:53 +01:00
|
|
|
|
2016-06-11 12:11:20 +02:00
|
|
|
BLAKE2_PACKED(struct blake2b_param__
|
2016-02-09 03:39:53 +01:00
|
|
|
{
|
2016-04-22 12:07:57 +02:00
|
|
|
uint8_t digest_length; /* 1 */
|
|
|
|
uint8_t key_length; /* 2 */
|
|
|
|
uint8_t fanout; /* 3 */
|
|
|
|
uint8_t depth; /* 4 */
|
|
|
|
uint32_t leaf_length; /* 8 */
|
2016-10-11 22:54:18 +02:00
|
|
|
uint32_t node_offset; /* 12 */
|
|
|
|
uint32_t xof_length; /* 16 */
|
2016-04-22 12:07:57 +02:00
|
|
|
uint8_t node_depth; /* 17 */
|
|
|
|
uint8_t inner_length; /* 18 */
|
|
|
|
uint8_t reserved[14]; /* 32 */
|
|
|
|
uint8_t salt[BLAKE2B_SALTBYTES]; /* 48 */
|
|
|
|
uint8_t personal[BLAKE2B_PERSONALBYTES]; /* 64 */
|
2016-06-11 01:06:51 +02:00
|
|
|
});
|
|
|
|
|
2016-06-11 12:11:20 +02:00
|
|
|
typedef struct blake2b_param__ blake2b_param;
|
2016-06-11 01:06:51 +02:00
|
|
|
|
2016-11-09 22:30:52 +01:00
|
|
|
typedef struct blake2xs_state__
|
2016-10-11 22:54:18 +02:00
|
|
|
{
|
|
|
|
blake2s_state S[1];
|
|
|
|
blake2s_param P[1];
|
|
|
|
} blake2xs_state;
|
|
|
|
|
2016-11-09 22:30:52 +01:00
|
|
|
typedef struct blake2xb_state__
|
2016-10-11 22:54:18 +02:00
|
|
|
{
|
|
|
|
blake2b_state S[1];
|
|
|
|
blake2b_param P[1];
|
|
|
|
} blake2xb_state;
|
|
|
|
|
2016-06-11 01:06:51 +02:00
|
|
|
/* Padded structs result in a compile-time error */
|
|
|
|
enum {
|
2021-04-20 14:31:23 +02:00
|
|
|
BLAKE2_DUMMY_1 = 1/(int)(sizeof(blake2s_param) == BLAKE2S_OUTBYTES),
|
|
|
|
BLAKE2_DUMMY_2 = 1/(int)(sizeof(blake2b_param) == BLAKE2B_OUTBYTES)
|
2016-06-11 01:06:51 +02:00
|
|
|
};
|
2013-02-01 16:44:36 +01:00
|
|
|
|
2016-04-22 12:07:57 +02:00
|
|
|
/* Streaming API */
|
2016-06-11 12:11:20 +02:00
|
|
|
int blake2s_init( blake2s_state *S, size_t outlen );
|
|
|
|
int blake2s_init_key( blake2s_state *S, size_t outlen, const void *key, size_t keylen );
|
2013-02-01 16:44:36 +01:00
|
|
|
int blake2s_init_param( blake2s_state *S, const blake2s_param *P );
|
2016-06-11 12:11:20 +02:00
|
|
|
int blake2s_update( blake2s_state *S, const void *in, size_t inlen );
|
|
|
|
int blake2s_final( blake2s_state *S, void *out, size_t outlen );
|
2013-02-01 16:44:36 +01:00
|
|
|
|
2016-06-11 12:11:20 +02:00
|
|
|
int blake2b_init( blake2b_state *S, size_t outlen );
|
|
|
|
int blake2b_init_key( blake2b_state *S, size_t outlen, const void *key, size_t keylen );
|
2013-02-01 16:44:36 +01:00
|
|
|
int blake2b_init_param( blake2b_state *S, const blake2b_param *P );
|
2016-06-11 12:11:20 +02:00
|
|
|
int blake2b_update( blake2b_state *S, const void *in, size_t inlen );
|
|
|
|
int blake2b_final( blake2b_state *S, void *out, size_t outlen );
|
2013-02-01 16:44:36 +01:00
|
|
|
|
2016-06-11 12:11:20 +02:00
|
|
|
int blake2sp_init( blake2sp_state *S, size_t outlen );
|
|
|
|
int blake2sp_init_key( blake2sp_state *S, size_t outlen, const void *key, size_t keylen );
|
|
|
|
int blake2sp_update( blake2sp_state *S, const void *in, size_t inlen );
|
|
|
|
int blake2sp_final( blake2sp_state *S, void *out, size_t outlen );
|
2013-02-01 16:44:36 +01:00
|
|
|
|
2016-06-11 12:11:20 +02:00
|
|
|
int blake2bp_init( blake2bp_state *S, size_t outlen );
|
|
|
|
int blake2bp_init_key( blake2bp_state *S, size_t outlen, const void *key, size_t keylen );
|
|
|
|
int blake2bp_update( blake2bp_state *S, const void *in, size_t inlen );
|
|
|
|
int blake2bp_final( blake2bp_state *S, void *out, size_t outlen );
|
2013-02-01 16:44:36 +01:00
|
|
|
|
2016-10-12 18:55:15 +02:00
|
|
|
/* Variable output length API */
|
|
|
|
int blake2xs_init( blake2xs_state *S, const size_t outlen );
|
|
|
|
int blake2xs_init_key( blake2xs_state *S, const size_t outlen, const void *key, size_t keylen );
|
|
|
|
int blake2xs_update( blake2xs_state *S, const void *in, size_t inlen );
|
|
|
|
int blake2xs_final(blake2xs_state *S, void *out, size_t outlen);
|
|
|
|
|
|
|
|
int blake2xb_init( blake2xb_state *S, const size_t outlen );
|
|
|
|
int blake2xb_init_key( blake2xb_state *S, const size_t outlen, const void *key, size_t keylen );
|
|
|
|
int blake2xb_update( blake2xb_state *S, const void *in, size_t inlen );
|
|
|
|
int blake2xb_final(blake2xb_state *S, void *out, size_t outlen);
|
2016-10-11 22:54:18 +02:00
|
|
|
|
2016-04-22 12:07:57 +02:00
|
|
|
/* Simple API */
|
2016-06-11 12:11:20 +02:00
|
|
|
int blake2s( void *out, size_t outlen, const void *in, size_t inlen, const void *key, size_t keylen );
|
|
|
|
int blake2b( void *out, size_t outlen, const void *in, size_t inlen, const void *key, size_t keylen );
|
2013-02-01 16:44:36 +01:00
|
|
|
|
2016-06-11 12:11:20 +02:00
|
|
|
int blake2sp( void *out, size_t outlen, const void *in, size_t inlen, const void *key, size_t keylen );
|
|
|
|
int blake2bp( void *out, size_t outlen, const void *in, size_t inlen, const void *key, size_t keylen );
|
2013-02-01 16:44:36 +01:00
|
|
|
|
2016-10-11 22:54:18 +02:00
|
|
|
int blake2xs( void *out, size_t outlen, const void *in, size_t inlen, const void *key, size_t keylen );
|
|
|
|
int blake2xb( void *out, size_t outlen, const void *in, size_t inlen, const void *key, size_t keylen );
|
|
|
|
|
2016-06-11 00:56:26 +02:00
|
|
|
/* This is simply an alias for blake2b */
|
2016-06-11 12:11:20 +02:00
|
|
|
int blake2( void *out, size_t outlen, const void *in, size_t inlen, const void *key, size_t keylen );
|
2013-02-01 16:44:36 +01:00
|
|
|
|
|
|
|
#if defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|