Mars--xlog加密踩坑

基础 - Xlog 加密使用指引 - 《Mars 开发文档》 - 书栈网 · BookStack

一、环境准备–Python2环境安装openssl
以下一起操作都需要在python2环境下进行操作
文档中使用的是pyelliptic1.5.7,在新版本的macos中已经不可用,有人提交了Issues
Exception: Couldn’t load OpenSSL lib , 升级到MACOS 11.5.1后出现 · Issue #969 · Tencent/mars (github.com)
下载pyelliptic 1.5.10
https://github.com/mfranciszkiewicz/pyelliptic/archive/1.5.10.tar.gz#egg=pyelliptic
解压后,修改源文件中的openssl.py文件,目录如下

pyelliptic-1.5.10/pyelliptic/openssl.py
def find_crypto_lib():
    if sys.platform != 'win32':
       # 注释掉下面路径,写绝对路径
       # return ctypes.util.find_library('crypto')
       return '/usr/lib/libcrypto.dylib'

在Python2环境下到pyelliptic-1.5.10进行安装

python setup.py install

二、生成公私钥
到Mars项目目录下找到gen_key.py,目录如下

mars-master/mars/log/crypt/gen_key.py

修改decode_mars_crypt_log_file.py中的公私钥

PRIV_KEY = "私钥"
PUB_KEY = "公钥"

三、修改Android中xlog的初始化代码

val SDCARD: String = Environment.getExternalStorageDirectory().absolutePath
val logPath: String = SDCARD + "/marssample/log"

// this is necessary, or may crash for SIGBUS
val cachePath: String = Ktx.app.filesDir.absolutePath + "/xlog"

val xlog = Xlog()
Log.setLogImp(xlog)
Log.setConsoleLogOpen(true)
Xlog.open(true,Xlog.LEVEL_DEBUG, Xlog.AppednerModeAsync, cachePath, logPath, "log文件前缀", "公钥")

四、log文件解密
使用decode_mars_crypt_log_file.py进行解密

python /Users/hanxueqiang/yuanmanyuan/mars-master/mars/log/crypt/decode_mars_crypt_log_file.py /Users/hanxueqiang/Downloads/dbx_local_20211118.xlog