mirror of
https://github.com/SciresM/hactool
synced 2024-11-22 20:13:08 +00:00
2567d516d5
-Not all pertitent information is printed out. -Extraction is pretty much supported, though. -TODO: CERT stuff, decryption, title ID fetching...
9 lines
313 B
C
9 lines
313 B
C
#ifndef HACTOOL_RSA_H
|
|
#define HACTOOL_RSA_H
|
|
|
|
#include "mbedtls/rsa.h"
|
|
|
|
int rsa2048_pss_verify(const void *data, size_t len, const unsigned char *signature, const unsigned char *modulus);
|
|
int rsa2048_pkcs1_verify(const void *data, size_t len, const unsigned char *signature, const unsigned char *modulus);
|
|
|
|
#endif
|