1.2.0 增加bugly

This commit is contained in:
2026-03-30 10:32:54 +08:00
parent 73892596b1
commit b53e07195f
24 changed files with 493 additions and 257 deletions

View File

@@ -21,8 +21,7 @@ public class VideoEncryptorGUI extends JFrame {
// 加密算法常量保持和VideoEncryptor一致
private static final String ALGORITHM = "AES/CTR/NoPadding";
// 视频文件扩展名列表(可根据需要扩展)
private static final List<String> VIDEO_EXTENSIONS = Arrays.asList("mp4", "avi", "mov", "mkv", "flv", "wmv",
"rmvb");
private static final List<String> VIDEO_EXTENSIONS = List.of("mp4");
// 测试用AES密钥16字节AES-128实际使用请替换为安全生成的密钥
private static final byte[] TEST_KEY = "1234567890123456".getBytes();
// 测试用IV向量16字节CTR模式要求IV长度等于块大小实际使用请随机生成