# Conflicts: # apps/im_app/lib/features/chat/presentation/chat_db_test_view_model.dart # apps/im_app/lib/features/login/presentation/login_view_model.dart 修复逻辑漏洞,性能优化
17 lines
637 B
Dart
17 lines
637 B
Dart
/// CipherGuard SDK - 端对端加密 Flutter 插件
|
||
///
|
||
/// 提供完整的加密/解密功能:
|
||
/// - RSA 密钥对管理(用户级别)
|
||
/// - AES 会话密钥管理(聊天室级别)
|
||
/// - 消息加密/解密
|
||
/// - 原生平台同步(iOS App Group)
|
||
/// - 推送通知解密
|
||
library;
|
||
|
||
export 'src/presentation/facade/cipher_guard_sdk_api.dart';
|
||
export 'src/data/datasources/encryption_flutter_service.dart' show KdfMode;
|
||
export 'src/domain/entities/rsa_key_pair.dart';
|
||
export 'src/domain/entities/session_key.dart';
|
||
export 'src/domain/entities/encrypted_message.dart';
|
||
export 'src/domain/entities/chat_encryption_key.dart';
|