Searched refs:DLL_EXPORT (Results 1 - 13 of 13) sorted by relevance
/developtools/hapsigner/hapsigntool_cpp/common/include/ |
H A D | byte_buffer.h | 58 DLL_EXPORT ByteBuffer(); 59 DLL_EXPORT explicit ByteBuffer(int32_t bufferCapacity); 60 DLL_EXPORT ByteBuffer(const char* arr, int32_t length); 61 DLL_EXPORT ByteBuffer(const ByteBuffer& other); 62 DLL_EXPORT ~ByteBuffer(); 63 DLL_EXPORT ByteBuffer& operator=(const ByteBuffer& other); 64 DLL_EXPORT bool GetInt64(int64_t& value); 65 DLL_EXPORT bool GetInt64(int32_t index, int64_t& value); 66 DLL_EXPORT bool GetUInt32(uint32_t& value); 67 DLL_EXPORT boo [all...] |
H A D | random_access_file.h | 44 DLL_EXPORT RandomAccessFile(); 45 DLL_EXPORT ~RandomAccessFile(); 46 DLL_EXPORT bool Init(const std::string& filePath); 47 DLL_EXPORT int64_t GetLength() const; 48 DLL_EXPORT int32_t ReadFileFullyFromOffset(ByteBuffer& buffer, int64_t offset); 49 DLL_EXPORT int32_t ReadFileFullyFromOffset(char buf[], int64_t offset, int64_t bufCapacity); 50 DLL_EXPORT int32_t WriteToFile(ByteBuffer& buffer, int64_t position, int64_t length); 51 DLL_EXPORT bool ReadFileFromOffsetAndDigestUpdate(const DigestParameter& digestParam, int32_t chunkSize,
|
H A D | digest_parameter.h | 26 DLL_EXPORT DigestParameter(); 27 DLL_EXPORT DigestParameter(const DigestParameter& other); 28 DLL_EXPORT DigestParameter& operator = (const DigestParameter& other); 29 DLL_EXPORT ~DigestParameter();
|
H A D | export_define.h | 19 #define DLL_EXPORT __attribute__ ((visibility ("default"))) macro 22 #define DLL_EXPORT macro
|
H A D | byte_buffer_data_source.h | 28 DLL_EXPORT ByteBufferDataSource(ByteBuffer& hapBuffer); 29 DLL_EXPORT ~ByteBufferDataSource();
|
H A D | digest_common.h | 53 DLL_EXPORT static int32_t GetDigestAlgorithmId(int32_t signAlgorithm);
|
/developtools/hiperf/include/ |
H A D | hiperf_libreport.h | 19 #define DLL_EXPORT __declspec(dllexport) macro 21 #define DLL_EXPORT __attribute__((visibility("default"))) macro 39 DLL_EXPORT const char *CDECL EchoLoopBack(const char *); 44 DLL_EXPORT int CDECL SetDebug(bool enable); 52 DLL_EXPORT int CDECL Report(const char *perfFile, const char *reportFile, 62 DLL_EXPORT int CDECL ReportJson(const char *perfFile, const char *reportFile); 71 DLL_EXPORT int CDECL ReportUnwindJson(const char *perfFile, const char *reportFile, 77 DLL_EXPORT int CDECL Dump(const char *); 83 DLL_EXPORT const char *CDECL ReportGetSymbolFiles(const char *perfFile); 88 DLL_EXPORT cons [all...] |
/developtools/hapsigner/hapsigntool_cpp/utils/include/ |
H A D | verify_cert_openssl_utils.h | 33 DLL_EXPORT static bool VerifyCrl(CertChain& certsChain, STACK_OF(X509_CRL)* crls, 36 DLL_EXPORT static bool X509NameCompare(const X509_NAME* a, const X509_NAME* b); 37 DLL_EXPORT static X509* FindCertOfIssuer(X509* cert, CertSign& certVisitSign); 38 DLL_EXPORT static std::string GetDnToString(X509_NAME* name); 39 DLL_EXPORT static void GetTextFromX509Name(X509_NAME* name, int32_t nId, std::string& text); 40 DLL_EXPORT static X509_CRL* GetCrlBySignedCertIssuer(STACK_OF(X509_CRL)* crls, const X509* cert); 41 DLL_EXPORT static bool CheckSignTimeInValidPeriod(const ASN1_TYPE* signTime, 43 DLL_EXPORT static void GenerateCertSignFromCertStack(STACK_OF(X509)* certs, CertSign& certVisitSign); 44 DLL_EXPORT static void ClearCertVisitSign(CertSign& certVisitSign); 45 DLL_EXPORT stati [all...] |
H A D | hap_signer_block_utils.h | 56 DLL_EXPORT static const int64_t HAP_SIG_BLOCK_MAGIC_HIGH_OLD; 57 DLL_EXPORT static const int64_t HAP_SIG_BLOCK_MAGIC_LOW_OLD; 58 DLL_EXPORT static const int64_t HAP_SIG_BLOCK_MAGIC_HIGH; 59 DLL_EXPORT static const int64_t HAP_SIG_BLOCK_MAGIC_LOW; 60 DLL_EXPORT static const int32_t ZIP_HEAD_OF_SIGNING_BLOCK_LENGTH; 61 DLL_EXPORT static const int32_t ZIP_EOCD_SEGMENT_FLAG; 79 DLL_EXPORT static bool FindHapSignature(RandomAccessFile& hapFile, SignatureInfo& signInfo); 80 DLL_EXPORT static bool GetOptionalBlockIndex(std::vector<OptionalBlock>& optionBlocks, 82 DLL_EXPORT static bool VerifyHapIntegrity(Pkcs7Context& digestInfo, RandomAccessFile& hapFile, 84 DLL_EXPORT stati [all...] |
H A D | verify_hap_openssl_utils.h | 37 DLL_EXPORT static bool ParsePkcs7Package(const unsigned char packageData[], 39 DLL_EXPORT static bool GetCertChains(PKCS7* p7, Pkcs7Context& pkcs7Context); 41 DLL_EXPORT static bool GetCrlStack(PKCS7* p7, STACK_OF(X509_CRL)* x509Crl); 42 DLL_EXPORT static bool VerifyPkcs7(Pkcs7Context& pkcs7Context); 47 DLL_EXPORT static bool VerifyPkcs7SignedData(Pkcs7Context& pkcs7Context); 48 DLL_EXPORT static bool VerifySignInfo(STACK_OF(PKCS7_SIGNER_INFO)* signerInfoStack,
|
/developtools/hapsigner/hapsigntool_cpp/profile/include/ |
H A D | profile_verify.h | 38 DLL_EXPORT AppProvisionVerifyResult ParseAndVerify(const std::string& appProvision, ProfileInfo& info); 45 DLL_EXPORT AppProvisionVerifyResult ParseProvision(const std::string& appProvision, ProfileInfo& info); 52 DLL_EXPORT AppProvisionVerifyResult ParseProfile(const std::string& appProvision, ProfileInfo& info);
|
H A D | profile_info.h | 72 DLL_EXPORT ProfileInfo(); 73 DLL_EXPORT ~ProfileInfo(); 74 DLL_EXPORT ProfileInfo(const ProfileInfo& info); 75 DLL_EXPORT ProfileInfo& operator=(const ProfileInfo& info);
|
/developtools/hapsigner/hapsigntool_cpp/hap/verify/include/ |
H A D | verify_hap.h | 50 DLL_EXPORT bool CheckFilePath(const std::string& filePath, std::string& standardFilePath); 69 DLL_EXPORT bool GetDigestAndAlgorithm(Pkcs7Context& digest);
|
Completed in 5 milliseconds