From 73f7d53572e91bee92ae3e5a589e534a2cedca18 Mon Sep 17 00:00:00 2001 From: CTCaer Date: Tue, 6 Jan 2026 23:01:54 +0200 Subject: [PATCH] hekate/nyx: update ctx keys calls based on new bdk --- bootloader/hos/hos.c | 2 +- nyx/nyx_gui/hos/hos.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bootloader/hos/hos.c b/bootloader/hos/hos.c index fd841a54..93e8a986 100644 --- a/bootloader/hos/hos.c +++ b/bootloader/hos/hos.c @@ -212,7 +212,7 @@ static void _hos_eks_save() // Get keys. u8 *keys = (u8 *)zalloc(SZ_8K); - se_get_aes_keys(keys + SZ_4K, keys, SE_KEY_128_SIZE); + se_aes_ctx_get_keys(keys + SZ_4K, keys, SE_KEY_128_SIZE); // Set magic and personalized info. h_cfg.eks->magic = HOS_EKS_MAGIC; diff --git a/nyx/nyx_gui/hos/hos.c b/nyx/nyx_gui/hos/hos.c index 01e40df3..e08db65f 100644 --- a/nyx/nyx_gui/hos/hos.c +++ b/nyx/nyx_gui/hos/hos.c @@ -254,7 +254,7 @@ static void _hos_eks_save() // Get keys. u8 *keys = (u8 *)zalloc(SZ_8K); - se_get_aes_keys(keys + SZ_4K, keys, SE_KEY_128_SIZE); + se_aes_ctx_get_keys(keys + SZ_4K, keys, SE_KEY_128_SIZE); // Set magic and personalized info. h_cfg.eks->magic = HOS_EKS_MAGIC;