摘要: ⭕、知识点 键盘象形密码 一、题目 给了一串未知文本 二、解题 1、用脚本或网址进行字频分析 import collections with open("keyes.txt", "r") as file: data = file.read() fre_analysis = collections.C 阅读全文
posted @ 2025-04-15 19:08 wyuu101 阅读(217) 评论(0) 推荐(0)
摘要: ⭕、知识点 伽罗瓦域/暴力求解/脚本编写 一、题目 二、解题 直接写脚本 import numpy as np import galois import hashlib # 定义二元伽罗瓦域 GF = galois.GF(2) # 定义题目中的矩阵 A = GF([[1, 1, 0, 1, 1, 0 阅读全文
posted @ 2025-04-15 16:41 wyuu101 阅读(257) 评论(0) 推荐(0)