上一页 1 ··· 108 109 110 111 112 113 114 115 116 ··· 188 下一页
摘要: MD5是信息摘要(Message Digist)算法。 信息摘要算法是避免篡改的一种方法,他对特定明文进行单向散列,生成特定的数值,如果有人篡改了明文,你可以通过对篡改后的明文进行单向散列,与原来明文的散列进行对比,来证明篡改行为。一般摘要算法与RSA加密及解密配合使用,这就形成了密码学中常说的签名 阅读全文
posted @ 2022-04-05 15:46 myrj 阅读(340) 评论(0) 推荐(0)
摘要: # 使用win32com来判断进程是否存在 import win32com.client def proc_exist(process_name): is_exist = False wmi = win32com.client.GetObject('winmgmts:') processCodeCo 阅读全文
posted @ 2022-04-05 14:40 myrj 阅读(1080) 评论(0) 推荐(0)
摘要: import pandas as pd import pymysql,emoji,sys,requests import re,sys,time,pymysql import configparser import xlrd #导入模块 from xlutils.copy import copy # 阅读全文
posted @ 2022-04-05 13:41 myrj 阅读(365) 评论(0) 推荐(0)
摘要: 0..abb=requests.post(url,headers=head1,data=aw) 会出现下面的错误提示: requests.exceptions.SSLError: HTTPSConnectionPool(host='www.。。。。.com', port=443): Max retr 阅读全文
posted @ 2022-04-04 22:04 myrj 阅读(584) 评论(0) 推荐(0)
摘要: #include <stdio.h> fun(int m) { if(m>0) fun(m-1); printf("%d ",m); } main() { int w=5; fun(w) ; getchar(); } 搜索 复制 阅读全文
posted @ 2022-04-02 06:59 myrj 阅读(54) 评论(0) 推荐(0)
摘要: def typeof(variate): type=None if isinstance(variate,int): type = "int" elif isinstance(variate,str): type = "str" elif isinstance(variate,float): typ 阅读全文
posted @ 2022-04-01 19:24 myrj 阅读(54) 评论(0) 推荐(0)
摘要: import multiprocessing from multiprocessing import Process,Lock,Manager from multiprocessing import Queue from multiprocessing import JoinableQueue #多 阅读全文
posted @ 2022-04-01 08:19 myrj 阅读(1014) 评论(0) 推荐(0)
摘要: from multiprocessing import Process def chulibkk(bka,q): global connect,con for acc in acca: result=[] aty=str(acc["rootId"]) userid=str(acc['userId'] 阅读全文
posted @ 2022-03-31 12:14 myrj 阅读(218) 评论(0) 推荐(0)
摘要: 详谈Mifare Classic 1K卡 0x00 前言 为啥要写这个文章?天气闷热,内心烦躁,水卡莫得钱了,喝不上水,充卡的人也不来,怎么办?干就完了 0x01 什么是Mifare Classic 1k卡 Mifare Classic 1K卡简称M1卡,属于非接触式射频卡。而与射频卡进行通讯的技术 阅读全文
posted @ 2022-03-28 19:30 myrj 阅读(3619) 评论(0) 推荐(0)
摘要: 1.树莓派安装VNC SERVER2.WIN10安装VNC VIEW3.WIN10打开realVNC--VNC VIEW 输入IP 用户名 密码 登录A WIN10发送文件到树莓派过程:4.点击第五个按钮:transfer files 5.打开如下窗口:6.点击send files选择WIN10中的 阅读全文
posted @ 2022-03-27 06:21 myrj 阅读(584) 评论(0) 推荐(0)
上一页 1 ··· 108 109 110 111 112 113 114 115 116 ··· 188 下一页