|
cryptnox-sdk-arduino 1.0.0
Arduino library for Cryptnox Hardware Wallet
|
Keccak-256 (SHA3 variant) hash function for Ethereum. More...
#include <stdint.h>#include <stddef.h>Go to the source code of this file.
Functions | |
| void | keccak256 (const uint8_t *in, size_t inlen, uint8_t out[32]) |
| Compute the Keccak-256 hash of a given input buffer. | |
Keccak-256 (SHA3 variant) hash function for Ethereum.
Provides a function to compute the Keccak-256 hash of an input buffer, producing a 32-byte digest.
Definition in file 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.
| [in] | in | Pointer to input data. |
| [in] | inlen | Length of input data in bytes. |
| [out] | out | Pointer to a 32-byte buffer where the hash will be stored. |
Compute the Keccak-256 hash of a given input buffer.
| [in] | in | Pointer to input buffer. |
| [in] | inlen | Length of input buffer in bytes. |
| [out] | out | Pointer to a 32-byte buffer to store the hash. |
Definition at line 111 of file keccak256.cpp.
References keccakf().
Referenced by setup().