Index: core/src/fdrm/crypto/fx_crypt.cpp |
diff --git a/core/src/fdrm/crypto/fx_crypt.cpp b/core/src/fdrm/crypto/fx_crypt.cpp |
index 83a420ad381d89fa73828299b865420d0358e3c3..f19445f8f2630c69d2a0603f509dc4e1aafe29f8 100644 |
--- a/core/src/fdrm/crypto/fx_crypt.cpp |
+++ b/core/src/fdrm/crypto/fx_crypt.cpp |
@@ -249,8 +249,8 @@ void CRYPT_MD5Generate(const uint8_t* input, FX_DWORD length, uint8_t digest[16] |
CRYPT_MD5Update(&ctx, input, length); |
CRYPT_MD5Finish(&ctx, digest); |
} |
-static FX_BOOL (*g_PubKeyDecryptor)(const uint8_t* pData, FX_DWORD size, uint8_t* data_buf, FX_DWORD& data_len) = NULL; |
-void CRYPT_SetPubKeyDecryptor(FX_BOOL (*func)(const uint8_t* pData, FX_DWORD size, uint8_t* data_buf, FX_DWORD& data_len)) |
+static bool (*g_PubKeyDecryptor)(const uint8_t* pData, FX_DWORD size, uint8_t* data_buf, FX_DWORD& data_len) = NULL; |
+void CRYPT_SetPubKeyDecryptor(bool (*func)(const uint8_t* pData, FX_DWORD size, uint8_t* data_buf, FX_DWORD& data_len)) |
{ |
g_PubKeyDecryptor = func; |
} |