1
0
Fork 0
mirror of https://github.com/DarkMatterCore/nxdumptool.git synced 2024-10-19 03:41:44 +01:00
nxdumptool/source/rsa.h

12 lines
213 B
C
Raw Normal View History

2019-06-05 23:44:18 +01:00
#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