#pragma once /** * @brief Cartallum CBE keccak system call **/ #include #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 sdk/sbf/c/inc/cbe/inc/keccak.inc AND RUN `cargo run --bin gen-headers` */ #ifndef CBE_SBFV2 uint64_t cbe_keccak256(const CBEBytes *, int, uint8_t *); #else typedef uint64_t(*cbe_keccak256_pointer_type)(const CBEBytes *, int, uint8_t *); static uint64_t cbe_keccak256(const CBEBytes * arg1, int arg2, uint8_t * arg3) { cbe_keccak256_pointer_type cbe_keccak256_pointer = (cbe_keccak256_pointer_type) 3615046331; return cbe_keccak256_pointer(arg1, arg2, arg3); } #endif #ifdef __cplusplus } #endif /**@}*/