mirror of
https://github.com/SciresM/hactool
synced 2024-11-26 14:00:23 +00:00
9 lines
219 B
C
9 lines
219 B
C
#ifndef NCATOOL_RSA_H
|
|
#define NCATOOL_RSA_H
|
|
|
|
#define GCRYPT_NO_DEPRECATED
|
|
#include <gcrypt.h>
|
|
|
|
int rsa2048_pss_verify(const void *data, size_t len, const unsigned char *signature, const unsigned char *modulus);
|
|
|
|
#endif
|