16 lines
561 B
Dart
16 lines
561 B
Dart
/// CipherGuard SDK - 端对端加密 Flutter 插件
|
||
///
|
||
/// 提供完整的加密/解密功能:
|
||
/// - RSA 密钥对管理(用户级别)
|
||
/// - AES 会话密钥管理(聊天室级别)
|
||
/// - 消息加密/解密
|
||
/// - 原生平台同步(iOS App Group)
|
||
/// - 推送通知解密
|
||
library;
|
||
|
||
export 'src/presentation/facade/cipher_guard_sdk_api.dart';
|
||
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';
|