我正在尝试使用AES256加密来加密数据。我有JSON格式。
{
"header": {
"ipAddress": "0.0.0.0",
"deviceId": "",
"fcmId": "",
"userAgent": "",
"operatingSystem": "ANDROID"
},
"userInfo": {
"name": "dany",
"mobileNo": "9994534343",
"emailId": "test@gmail.com",
"type": "1",
"createdBy": "ABCDEF123"
},
"transaction": {
"requestType": "USR",
"requestSubType": "REG",
"channel": "MOBILE",
"countryCode": "INR"
}
}
如何使用AES256加密数据。我没有找到任何使用AES256加密来加密JSON的解决方案。