Revision 1811896f0d5c549cd54a3b84dd37d4e5dec8bc97 authored by dependabot[bot] on 17 October 2022, 06:23:48 UTC, committed by GitHub on 17 October 2022, 06:23:48 UTC
Bumps [pqclean](https://github.com/pqclean/pqclean) from `12cb25a` to `d3fcc0f`.
- [Release notes](https://github.com/pqclean/pqclean/releases)
- [Commits](https://github.com/pqclean/pqclean/compare/12cb25a7f04daa8c76870e6ae3ce85b4ecacd044...d3fcc0fa8d868835a92545fbd08c17497a787102)

---
updated-dependencies:
- dependency-name: pqclean
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 778deff
Raw File
keccakf1600.h
#ifndef KECCAKF1600_H
#define KECCAKF1600_H

#include <stdint.h>

void KeccakF1600_StateExtractBytes(uint64_t *state, unsigned char *data, unsigned int offset, unsigned int length);
void KeccakF1600_StateXORBytes(uint64_t *state, const unsigned char *data, unsigned int offset, unsigned int length);
void KeccakF1600_StatePermute(uint64_t * state);

#endif
back to top