mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-30 14:35:17 -04:00
Example SMC implementation (load_aes_key)
This commit is contained in:
parent
49e1e6f41e
commit
5c24f58402
3 changed files with 98 additions and 3 deletions
21
exosphere/smc_user.h
Normal file
21
exosphere/smc_user.h
Normal file
|
@ -0,0 +1,21 @@
|
|||
#ifndef EXOSPHERE_SMC_USER_H
|
||||
#define EXOSPHERE_SMC_USER_H
|
||||
|
||||
#include "smc_api.h"
|
||||
|
||||
uint32_t user_exp_mod(smc_args_t *args);
|
||||
uint32_t user_get_random_bytes(smc_args_t *args);
|
||||
uint32_t user_generate_aes_kek(smc_args_t *args);
|
||||
uint32_t user_load_aes_key(smc_args_t *args);
|
||||
uint32_t user_crypt_aes(smc_args_t *args);
|
||||
uint32_t user_generate_specific_aes_key(smc_args_t *args);
|
||||
uint32_t user_compute_cmac(smc_args_t *args);
|
||||
uint32_t user_load_rsa_private_key(smc_args_t *args);
|
||||
uint32_t user_decrypt_rsa_private_key(smc_args_t *args);
|
||||
uint32_t user_load_rsa_oaep_key(smc_args_t *args);
|
||||
uint32_t user_rsa_oaep(smc_args_t *args);
|
||||
uint32_t user_unwrap_rsa_wrapped_titlekey(smc_args_t *args);
|
||||
uint32_t user_load_titlekey(smc_args_t *args);
|
||||
uint32_t user_unwrap_aes_wrapped_titlekey(smc_args_t *args);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue