在下面附上我的soapui请求。当我使用此PHP代码时,无法获得soapui的响应。请帮助我找到解决方法
SecretKey secretKey;
if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) {
String stringKey = "string got from machines below Pie";
byte[] encodedKey = Base64.decode(stringKey, Base64.DEFAULT);
secretKey= new SecretKeySpec(encodedKey, 0, encodedKey.length, "AES");
} else {
/* get the SecretKey as before Pie */
}
/* Continue the decryption process */