1
0
Fork 0
mirror of https://github.com/DarkMatterCore/nxdumptool.git synced 2024-10-18 19:31:43 +01:00
nxdumptool/source/rsa.h
2019-06-05 18:44:18 -04:00

11 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