mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-02-22 21:20:03 +01:00
8 lines
308 B
C
8 lines
308 B
C
#ifndef EXOSPHERE_GCM_H
|
|
#define EXOSPHERE_GCM_H
|
|
|
|
#include <stdint.h>
|
|
|
|
int gcm_decrypt_key(unsigned int keyslot, void *dst, size_t dst_size, const void *src, size_t src_size, const void *sealed_kek, size_t kek_size, const void *wrapped_key, size_t key_size, unsigned int usecase, int is_personalized);
|
|
|
|
#endif |