mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-06 04:01:44 +00:00
13 lines
No EOL
374 B
C
13 lines
No EOL
374 B
C
#ifndef EXOSPHERE_TITLEKEY_H
|
|
#define EXOSPHERE_TITLEKEY_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void tkey_set_expected_label_hash(uint64_t *label_hash);
|
|
void tkey_set_master_key_rev(unsigned int master_key_rev);
|
|
|
|
size_t tkey_rsa_oaep_unwrap(void *dst, size_t dst_size, void *src, size_t src_size);
|
|
|
|
void tkey_aes_unwrap(void *dst, size_t dst_size, const void *src, size_t src_size);
|
|
|
|
#endif |