mirror of
https://github.com/opa334/TrollStore.git
synced 2025-04-12 23:33:11 +08:00
12 lines
292 B
C
12 lines
292 B
C
#ifndef SIGNING_H
|
|
#define SIGNING_H
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <CommonCrypto/CommonCrypto.h>
|
|
#include <Security/SecKey.h>
|
|
#include <Security/Security.h>
|
|
|
|
// int signWithRSA(const char *certificateFile, const char *inputFile, const char *outputFile);
|
|
|
|
#endif // SIGNING_H
|