Files
concrete/compiler/include/zamalang/Runtime/context.h

16 lines
358 B
C

#ifndef ZAMALANG_RUNTIME_CONTEXT_H
#define ZAMALANG_RUNTIME_CONTEXT_H
#include "concrete-ffi.h"
typedef struct RuntimeContext {
struct LweKeyswitchKey_u64 *ksk;
struct LweBootstrapKey_u64 *bsk;
} RuntimeContext;
LweKeyswitchKey_u64 *get_keyswitch_key(RuntimeContext *context);
LweBootstrapKey_u64 *get_bootstrap_key(RuntimeContext *context);
#endif