Runt
9 days ago a3dc9d5522d8a5f2ebc71c8f4b7cd7695a6812d3
libmvi/src/main/java/com/runt/open/mvi/retrofit/Interceptor/OpenInterceptor.java
@@ -33,7 +33,7 @@
public class OpenInterceptor implements Interceptor {
    protected final Charset UTF8 = Charset.forName("UTF-8");
    protected final String ENCRYPT = "body";
    protected final String ENCRYPT = "paramsString";
    @Override
    public Response intercept(Chain chain) throws IOException {
@@ -108,7 +108,7 @@
    protected String encryptJson(String json){
        try {
            return RSAUtils.encrypt(json,RSAUtils.getPublicKey(RSAUtils.PUBLIC_KEY));
            return RSAUtils.encrypt(json);
        }catch (Exception e){
            e.printStackTrace();
            return e.getMessage();