摘要:
Crypto the key to AES 已知题目问题代码: from secret import flag, key from Crypto.Util.Padding import pad from Crypto.Cipher import AES from hashlib import * a 阅读全文
摘要:
使用EasyX c++库 中点算法直线绘制 //中点算法划线:横向直线绘制 void DDAline(int x1, int y1, int x2, int y2, int color) { int x; float dx, dy, y, k; dx = x2 - x1, dy = y2 - y1; 阅读全文