| 123456789101112131415161718192021222324252627282930313233343536373839 |
- #pragma once
- /**
- * @brief Solana keccak system call
- **/
- #include <sol/types.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- /**
- * Length of a Keccak hash result
- */
- #define KECCAK_RESULT_LENGTH 32
- /**
- * Keccak
- *
- * @param bytes Array of byte arrays
- * @param bytes_len Number of byte arrays
- * @param result 32 byte array to hold the result
- */
- /* DO NOT MODIFY THIS GENERATED FILE. INSTEAD CHANGE platform-tools-sdk/sbf/c/inc/sol/inc/keccak.inc AND RUN `cargo run --bin gen-headers` */
- #ifndef SOL_SBFV2
- uint64_t sol_keccak256(const SolBytes *, int, uint8_t *);
- #else
- typedef uint64_t(*sol_keccak256_pointer_type)(const SolBytes *, int, uint8_t *);
- static uint64_t sol_keccak256(const SolBytes * arg1, int arg2, uint8_t * arg3) {
- sol_keccak256_pointer_type sol_keccak256_pointer = (sol_keccak256_pointer_type) 3615046331;
- return sol_keccak256_pointer(arg1, arg2, arg3);
- }
- #endif
- #ifdef __cplusplus
- }
- #endif
- /**@}*/
|