TrollStore/RootHelper/external/include/choma/SignOSSL.h

16 lines
338 B
C
Raw Normal View History

#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