2020年3月27日

Python(00):RSA加解密

摘要: 一、rsa库(推荐)1、公钥加密、私钥解密# -*- coding: utf-8 -*-import rsa# rsa加密def rsaEncrypt(str): # 生成公钥、私钥 (pubkey, privkey) = rsa.newkeys(512) print("pub: ", pubkey) print("priv: ", privkey) # 明文编码格... 阅读全文

posted @ 2020-03-27 17:06 springsnow 阅读(1197) 评论(0) 推荐(0) 编辑

Python(00):使用selenium模块

摘要: 一、什么是Seleniumselenium 是一套完整的web应用程序测试系统,包含了测试的录制(selenium IDE),编写及运行(Selenium Remote Control)和测试的并行处理(Selenium Grid)。Selenium的核心Selenium Core基于JsUnit,完全由JavaScript编写,因此可以用于任何支持JavaScript的浏览器上。seleniu... 阅读全文

posted @ 2020-03-27 09:20 springsnow 阅读(392) 评论(0) 推荐(0) 编辑

导航