Browse Source

修复合并后确实的加密字段

loki.wu 1 năm trước cách đây
mục cha
commit
49e11cb8fc
3 tập tin đã thay đổi với 11 bổ sung1 xóa
  1. 7 0
      lib/client_base.dart
  2. 0 0
      lib/encrpyt.dart
  3. 4 1
      pubspec.yaml

+ 7 - 0
lib/client_base.dart

@@ -1,6 +1,7 @@
 import 'dart:convert';
 import 'package:dio/dio.dart' as dio;
 import 'package:fis_common/http/http_error.dart';
+import 'package:fis_jsonrpc/encrpyt.dart';
 import 'package:flutter/foundation.dart';
 import 'exception.dart';
 import 'http_pool.dart';
@@ -17,6 +18,12 @@ class JsonRpcClientBase {
   // ignore: non_constant_identifier_names
   static int DEAULT_TIMEOUT = 15000;
 
+  /// 请求加密配置
+  static JsonRpcEncryptConfig requestEncryptConfig = JsonRpcEncryptConfig();
+
+  /// 响应加密配置
+  static JsonRpcEncryptConfig responseEncryptConfig = JsonRpcEncryptConfig();
+
   late int _timeout;
 
   late String _serviceName;

+ 0 - 0
lib/encrpyt.dart


+ 4 - 1
pubspec.yaml

@@ -12,7 +12,10 @@ environment:
 dependencies:
   flutter:
     sdk: flutter
-
+  dart_sm: 0.1.4
+  encrypt: ^5.0.0
+  dart_des: ^1.0.2
+  hex: ^0.2.0
   fis_common:
     git:
       url: http://git.ius.plus:88/Project-Wing/fis_lib_common.git