How to encrypt event data sent by iOS/Android SDKs

Is there a way to encrypt entire event request body, now it looks like this:
{
“tags”: {},
“dist”: “5.5.0”,
“extra”: {},
“platform”: “cocoa”,
“release”: “com.hillhouse.signal-5.5.0”,
“level”: “error”,
“event_id”: “155093704A874EB68C17B685587EFF5A”,
“message”: “[HJWTManager.swift:90 getJWTWithKey(_:complete:)]: yytest”,
“timestamp”: “2020-12-10T09:12:51Z”,
“sdk”: {
“name”: “sentry-cocoa”,
“version”: “3.13.1”
},
“contexts”: {
“os”: {
“name”: “iOS”,
“version”: “14.2”,
“rooted”: false
},
“app”: {
“app_identifier”: “com.hillhouse.signal”,
“app_name”: “Signal”,
“app_version”: “5.5.0”,
“app_build”: “5.5.0”
},
“device”: {
“usable_memory”: 0,
“storage_size”: 0,
“free_memory”: 0,
“memory_size”: 0
}
}
}

The Sentry SDK connects to Sentry via TLS (https) so the data is encrypted when it leaves the device and gets into Sentry’s servers.