mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-10 04:35:03 -05:00
11 lines
241 B
C
11 lines
241 B
C
#include "zamalang/Runtime/context.h"
|
|
#include <stdio.h>
|
|
|
|
LweKeyswitchKey_u64 *get_keyswitch_key(RuntimeContext *context) {
|
|
return context->ksk;
|
|
}
|
|
|
|
LweBootstrapKey_u64 *get_bootstrap_key(RuntimeContext *context) {
|
|
return context->bsk;
|
|
}
|