mirror of
https://github.com/DarkMatterCore/nxdumptool.git
synced 2024-11-23 02:36:41 +00:00
12 lines
213 B
C
12 lines
213 B
C
|
#pragma once
|
||
|
|
||
|
#ifndef __RSA_H__
|
||
|
#define __RSA_H__
|
||
|
|
||
|
#include <switch.h>
|
||
|
|
||
|
bool rsa_sign(void* input, size_t input_size, unsigned char* output, size_t output_size);
|
||
|
const unsigned char *rsa_get_public_key();
|
||
|
|
||
|
#endif
|