2019-01-15 14:35:25 +00:00
|
|
|
#ifndef FIPS202_H
|
|
|
|
#define FIPS202_H
|
|
|
|
|
2019-02-17 10:54:38 +00:00
|
|
|
#include <stddef.h>
|
2019-01-15 14:35:25 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#define SHAKE128_RATE 168
|
|
|
|
#define SHAKE256_RATE 136
|
|
|
|
#define SHA3_256_RATE 136
|
2019-06-10 19:40:49 +01:00
|
|
|
#define SHA3_384_RATE 104
|
2019-01-15 15:34:01 +00:00
|
|
|
#define SHA3_512_RATE 72
|
2019-01-15 14:35:25 +00:00
|
|
|
|
2019-01-16 09:15:18 +00:00
|
|
|
|
2019-05-20 09:22:51 +01:00
|
|
|
// Context for incremental API
|
|
|
|
typedef struct {
|
|
|
|
uint64_t ctx[26];
|
|
|
|
} shake128incctx;
|
2019-01-16 09:15:18 +00:00
|
|
|
|
2019-05-20 09:22:51 +01:00
|
|
|
// Context for non-incremental API
|
|
|
|
typedef struct {
|
|
|
|
uint64_t ctx[25];
|
|
|
|
} shake128ctx;
|
2019-01-16 09:15:18 +00:00
|
|
|
|
2019-05-20 09:22:51 +01:00
|
|
|
// Context for incremental API
|
|
|
|
typedef struct {
|
|
|
|
uint64_t ctx[26];
|
|
|
|
} shake256incctx;
|
2019-01-15 14:35:25 +00:00
|
|
|
|
2019-05-20 09:22:51 +01:00
|
|
|
// Context for non-incremental API
|
|
|
|
typedef struct {
|
|
|
|
uint64_t ctx[25];
|
|
|
|
} shake256ctx;
|
|
|
|
|
|
|
|
// Context for incremental API
|
|
|
|
typedef struct {
|
|
|
|
uint64_t ctx[26];
|
|
|
|
} sha3_256incctx;
|
|
|
|
|
2019-06-10 19:40:49 +01:00
|
|
|
// Context for incremental API
|
|
|
|
typedef struct {
|
|
|
|
uint64_t ctx[26];
|
|
|
|
} sha3_384incctx;
|
|
|
|
|
2019-05-20 09:22:51 +01:00
|
|
|
// Context for incremental API
|
|
|
|
typedef struct {
|
|
|
|
uint64_t ctx[26];
|
|
|
|
} sha3_512incctx;
|
|
|
|
|
|
|
|
void shake128_absorb(shake128ctx *state, const uint8_t *input, size_t inlen);
|
|
|
|
|
|
|
|
void shake128_squeezeblocks(uint8_t *output, size_t nblocks, shake128ctx *state);
|
|
|
|
|
|
|
|
void shake128_inc_init(shake128incctx *state);
|
|
|
|
void shake128_inc_absorb(shake128incctx *state, const uint8_t *input, size_t inlen);
|
|
|
|
void shake128_inc_finalize(shake128incctx *state);
|
|
|
|
void shake128_inc_squeeze(uint8_t *output, size_t outlen, shake128incctx *state);
|
|
|
|
|
|
|
|
void shake256_absorb(shake256ctx *state, const uint8_t *input, size_t inlen);
|
|
|
|
void shake256_squeezeblocks(uint8_t *output, size_t nblocks, shake256ctx *state);
|
|
|
|
|
|
|
|
void shake256_inc_init(shake256incctx *state);
|
|
|
|
void shake256_inc_absorb(shake256incctx *state, const uint8_t *input, size_t inlen);
|
|
|
|
void shake256_inc_finalize(shake256incctx *state);
|
|
|
|
void shake256_inc_squeeze(uint8_t *output, size_t outlen, shake256incctx *state);
|
2019-03-07 15:21:49 +00:00
|
|
|
|
2019-02-17 10:54:38 +00:00
|
|
|
void shake128(uint8_t *output, size_t outlen,
|
|
|
|
const uint8_t *input, size_t inlen);
|
2019-01-16 09:15:18 +00:00
|
|
|
|
2019-02-17 10:54:38 +00:00
|
|
|
void shake256(uint8_t *output, size_t outlen,
|
|
|
|
const uint8_t *input, size_t inlen);
|
2019-01-16 09:15:18 +00:00
|
|
|
|
2019-05-20 09:22:51 +01:00
|
|
|
void sha3_256_inc_init(sha3_256incctx *state);
|
|
|
|
void sha3_256_inc_absorb(sha3_256incctx *state, const uint8_t *input, size_t inlen);
|
|
|
|
void sha3_256_inc_finalize(uint8_t *output, sha3_256incctx *state);
|
2019-03-07 15:35:27 +00:00
|
|
|
|
2019-02-17 10:54:38 +00:00
|
|
|
void sha3_256(uint8_t *output, const uint8_t *input, size_t inlen);
|
2019-03-07 15:35:27 +00:00
|
|
|
|
2019-06-10 19:40:49 +01:00
|
|
|
void sha3_384_inc_init(sha3_384incctx *state);
|
|
|
|
void sha3_384_inc_absorb(sha3_384incctx *state, const uint8_t *input, size_t inlen);
|
|
|
|
void sha3_384_inc_finalize(uint8_t *output, sha3_384incctx *state);
|
|
|
|
|
|
|
|
void sha3_384(uint8_t *output, const uint8_t *input, size_t inlen);
|
|
|
|
|
2019-05-20 09:22:51 +01:00
|
|
|
void sha3_512_inc_init(sha3_512incctx *state);
|
|
|
|
void sha3_512_inc_absorb(sha3_512incctx *state, const uint8_t *input, size_t inlen);
|
|
|
|
void sha3_512_inc_finalize(uint8_t *output, sha3_512incctx *state);
|
2019-03-07 15:35:27 +00:00
|
|
|
|
2019-02-17 10:54:38 +00:00
|
|
|
void sha3_512(uint8_t *output, const uint8_t *input, size_t inlen);
|
2019-01-15 14:35:25 +00:00
|
|
|
|
|
|
|
#endif
|