cryptnox-sdk-arduino 1.0.0
Arduino library for Cryptnox Hardware Wallet
Loading...
Searching...
No Matches
keccak256.h
Go to the documentation of this file.
1/*
2 * SPDX-License-Identifier: LGPL-3.0-or-later
3 * Copyright (c) 2026 Cryptnox SA
4 */
5
15
16#ifndef KECCAK256_H
17#define KECCAK256_H
18
19#include <stdint.h>
20#include <stddef.h>
21
32void keccak256(const uint8_t *in, size_t inlen, uint8_t out[32]);
33
34#endif /* KECCAK256_H */
void keccak256(const uint8_t *in, size_t inlen, uint8_t out[32])
Compute the Keccak-256 hash of a given input buffer.