window.onload=function(){ /*页面加载完成之后生成博客目录*/ BlogDirectory.createBlogDirectory("cnblogs_post_body","h2","h3",20); }
摘要: crypto常用算法 欧几里得算法(辗转相除法) def gcd(a, b): if b == 0: return a else: return gcd(b, a % b) 扩展欧几里得算法 def ext_euclid(a, b): if b == 0: return 1, 0, a else: x, y, q = e 阅读全文
posted @ 2023-10-31 05:02 Kicky_Mu 阅读(743) 评论(0) 推荐(3)
摘要: crypto常用工具 古典密码 维吉尼亚密码(Vigenere): https://github.com/atomcated/Vigenere(加密解密程序,包含自动猜测密钥功能) https://www.guballa.de/vigenere-solver whitespace语言: https://ideone.co 阅读全文
posted @ 2023-10-31 04:38 Kicky_Mu 阅读(743) 评论(1) 推荐(1)