mirror of https://github.com/opa334/TrollStore.git
16 lines
338 B
C
16 lines
338 B
C
|
#ifndef SIGN_OSSL_H
|
||
|
#define SIGN_OSSL_H
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <string.h>
|
||
|
#include <openssl/pem.h>
|
||
|
#include <openssl/rsa.h>
|
||
|
#include <openssl/sha.h>
|
||
|
#include <openssl/err.h>
|
||
|
|
||
|
unsigned char *signWithRSA(unsigned char *inputData, size_t inputDataLength, size_t *outputDataLength);
|
||
|
|
||
|
#endif // SIGN_OSSL_H
|
||
|
|
||
|
// 0xA422
|