Atmosphere/exosphere/gcm.h

8 lines
308 B
C
Raw Normal View History

#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