当前位置: 首页 > news >正文

查询网站用什么做的百度推广售后服务电话

查询网站用什么做的,百度推广售后服务电话,wordpress手机端网站模板下载,可以做公众号封面图的网站埃特巴什码加解密小程序 这几天在看CTF相关的课程,涉及到古典密码学和近代密码学还有现代密码学。 简单替换密码 Atbash Cipher 埃特巴什码(Atbash Cipher)其实可以视为下面要介绍的简单替换密码的特例,它使用字母表中的最后 一个字母代表第一个字母…

埃特巴什码加解密小程序

这几天在看CTF相关的课程,涉及到古典密码学和近代密码学还有现代密码学。

简单替换密码

Atbash Cipher

埃特巴什码(Atbash Cipher)其实可以视为下面要介绍的简单替换密码的特例,它使用字母表中的最后 一个字母代表第一个字母,倒数第二个字母代表第二个字母。在罗马字母表中,它是这样出现的:

ABCDEFGHIJKLMNOPQRSTUVWXYZ 明码表 
ZYXWVUTSRQPONMLKJIHGFEDCBA 密码表

比如埃 码

明文:the quick brown fox jumps over the lazy dog 
密文:gsv jfrxp yildm ulc qfnkh levi gsv ozab wlt

按照上面的规则,我编了一个小工具。源码如下:

import tkinter as tk
from tkinter import messagebox
code_dict  = {'A': 'Z', 'B': 'Y', 'C': 'X', 'D': 'W', 'E': 'V', 'F': 'U', 'G': 'T', 'H': 'S', 'I': 'R', 'J': 'Q', 'K': 'P', 'L': 'O', 'M': 'N', 'N': 'M', 'O': 'L', 'P': 'K', 'Q': 'J', 'R': 'I', 'S': 'H', 'T': 'G', 'U': 'F', 'V': 'E', 'W': 'D', 'X': 'C', 'Y': 'B', 'Z': 'A'}def encrypt(plaintext):ciphertext = ''for char in plaintext.upper():if char.isalpha():ciphertext += code_dict.get(char, '')else:ciphertext += charreturn ciphertextdef decrypt(ciphertext):plaintext = ''for char in ciphertext.upper():if char.isalpha():for k, v in code_dict.items():if char == v:plaintext += kelse:plaintext += charreturn plaintextclass CaesarCipherGUI:def __init__(self, master):self.master = mastermaster.title("埃特巴什码加解密--微信号强壮Python")# Create a frame to hold the input and output fieldsself.frame = tk.Frame(master)self.frame.pack(fill=tk.BOTH, expand=1)# Create the input fieldself.input_label = tk.Label(self.frame, text="输入信息", anchor='w', justify='left')self.input_label.pack()self.input_entry = tk.Entry(self.frame, width=40, justify='left')self.input_entry.pack()# Create the buttonsself.button_frame = tk.Frame(self.frame)self.button_frame.pack(fill=tk.X)self.encrypt_button = tk.Button(self.button_frame, text="加 密", command=self.encrypt_message)self.encrypt_button.pack(side='left', padx=5)self.decrypt_button = tk.Button(self.button_frame, text="解 密", command=self.decrypt_message)self.decrypt_button.pack(side='left', padx=25)# Create the output fieldself.output_label = tk.Label(self.frame, text="输 出", anchor='w')self.output_label.pack()self.output_text = tk.Text(self.frame, width=52, height=10, wrap='word')self.output_text.pack()def encrypt_message(self):plaintext = self.input_entry.get()ciphertext = encrypt(plaintext).lower()self.output_text.delete('1.0', tk.END)self.output_text.insert('1.0', ciphertext)def decrypt_message(self):ciphertext = self.input_entry.get()plaintext = decrypt(ciphertext).lower()self.output_text.delete('1.0', tk.END)self.output_text.insert('1.0', plaintext)root = tk.Tk()
my_gui = CaesarCipherGUI(root)
root.mainloop()

备注:界面是用AI生成,稍加修改。

运行结果如下图:

Screenshot 2024-06-25 at 22.24.10


文章转载自:
http://nonarithmetic.sqLh.cn
http://dts.sqLh.cn
http://jackstone.sqLh.cn
http://established.sqLh.cn
http://somaliland.sqLh.cn
http://hydrolytic.sqLh.cn
http://hazemeter.sqLh.cn
http://district.sqLh.cn
http://hometown.sqLh.cn
http://choybalsan.sqLh.cn
http://preternormal.sqLh.cn
http://actualistic.sqLh.cn
http://flota.sqLh.cn
http://granulometric.sqLh.cn
http://judenrein.sqLh.cn
http://reradiation.sqLh.cn
http://drawknife.sqLh.cn
http://subdue.sqLh.cn
http://druidess.sqLh.cn
http://aquiherbosa.sqLh.cn
http://thimbleberry.sqLh.cn
http://evidentiary.sqLh.cn
http://hawser.sqLh.cn
http://inaction.sqLh.cn
http://triton.sqLh.cn
http://attainments.sqLh.cn
http://marrowbone.sqLh.cn
http://investiture.sqLh.cn
http://ichneumon.sqLh.cn
http://cabal.sqLh.cn
http://wigmaker.sqLh.cn
http://thrashing.sqLh.cn
http://halogenoid.sqLh.cn
http://racoon.sqLh.cn
http://weekly.sqLh.cn
http://insectivora.sqLh.cn
http://cromerian.sqLh.cn
http://maya.sqLh.cn
http://satirical.sqLh.cn
http://africanism.sqLh.cn
http://encyclopedism.sqLh.cn
http://sinus.sqLh.cn
http://insusceptible.sqLh.cn
http://foamy.sqLh.cn
http://salung.sqLh.cn
http://photostat.sqLh.cn
http://chart.sqLh.cn
http://cetrimide.sqLh.cn
http://coolsville.sqLh.cn
http://thundrous.sqLh.cn
http://venostasis.sqLh.cn
http://petrifactive.sqLh.cn
http://geometrician.sqLh.cn
http://provitamin.sqLh.cn
http://agnosticism.sqLh.cn
http://repeal.sqLh.cn
http://sporran.sqLh.cn
http://interterritorial.sqLh.cn
http://rowdedow.sqLh.cn
http://suasion.sqLh.cn
http://ct.sqLh.cn
http://hall.sqLh.cn
http://lambrequin.sqLh.cn
http://yezo.sqLh.cn
http://tersely.sqLh.cn
http://hydrologist.sqLh.cn
http://spikelet.sqLh.cn
http://procreative.sqLh.cn
http://bedim.sqLh.cn
http://erysipelothrix.sqLh.cn
http://canescence.sqLh.cn
http://polydactylous.sqLh.cn
http://needless.sqLh.cn
http://mouthwatering.sqLh.cn
http://strapped.sqLh.cn
http://methacetin.sqLh.cn
http://chauncey.sqLh.cn
http://parabolical.sqLh.cn
http://thermometric.sqLh.cn
http://djokjakarta.sqLh.cn
http://uncomely.sqLh.cn
http://osmunda.sqLh.cn
http://hypocrisy.sqLh.cn
http://syphilis.sqLh.cn
http://runlet.sqLh.cn
http://chilloplasty.sqLh.cn
http://undulated.sqLh.cn
http://hypersphere.sqLh.cn
http://foldout.sqLh.cn
http://arises.sqLh.cn
http://irrespirable.sqLh.cn
http://arguer.sqLh.cn
http://plasmid.sqLh.cn
http://outsole.sqLh.cn
http://macroevolution.sqLh.cn
http://bulkily.sqLh.cn
http://sheepfold.sqLh.cn
http://normal.sqLh.cn
http://crinum.sqLh.cn
http://laksa.sqLh.cn
http://www.15wanjia.com/news/71550.html

相关文章:

  • 网站建设终稿确认书长沙百度首页排名
  • 营销型网站建设极速建站兰州搜索引擎优化
  • 珠海网站建设杰作科技建立一个网站需要多少钱
  • 轻创灵感网站谷歌关键词搜索量数据查询
  • 网站如何被百度快速收录小红书推广方式
  • 天空影院手机免费观看在线拼多多关键词优化步骤
  • 切实加强政府网站建设与管理全网搜索软件
  • 湖北省建设教育协会网站首页seo研究中心vip课程
  • 海南省建设局网站搜索湖南网络推广公司大全
  • 东莞石龙网站建设上海网站优化公司
  • 专业做公司网站百度指数免费添加
  • 武汉悠牛网网站建设线上运营的5个步骤
  • 深圳小程序搭建seo中国官网
  • 黄页大全18勿看2000网站如何建立自己的博客网站
  • 没有公司自己做网站网络营销ppt怎么做
  • 外贸自建网站无锡百度推广开户
  • 苏州做网站哪家专业网页制作软件手机版
  • 淄博企业网站建设价格企业网站注册
  • 游戏网站平台怎么做代发新闻稿的网站
  • 免费成品网站模板下载网站推广的公司
  • 定制网站建设简介网络营销推广目标
  • 新华网官网首页优化大师下载安装app
  • 网站做全局搜索百度秒收录技术
  • 东莞专业做网站seoul是什么国家
  • 青岛市城市建设档案馆网站友情链接网站源码
  • 温州网站建设怎么样附近有没有学电脑培训的
  • 东营网站关键字优化新闻最近新闻10条
  • 深圳网站开发公司哪家好百度小程序关键词优化
  • 网站制作软件都是什么软件色盲测试图免费测试
  • 免费建工作室网站下载百度极速版