1.allure用例描述 包含:epic,feature, story, title, testcase, issue, description, step, serverity, link, attachment 2.实例应用 import pytest import allure @pytest ...
分类:
其他好文 时间:
2020-06-15 17:31:45
阅读次数:
165
Ubuntu安装python3 sudo apt install python3 sudo apt install python3-pip 1.安装软件 1.解压软件 unzip 2. ./configure 使用./configure出错执行下面命令 autoreconf -iv 自动生成conf ...
分类:
系统相关 时间:
2020-06-13 20:58:26
阅读次数:
72
In this Document Symptoms Cause Solution References APPLIES TO:Oracle Database - Enterprise Edition - Version 12.1.0.1 to 12.1.0.2 [Release 12.1]Infor ...
分类:
其他好文 时间:
2020-06-11 21:43:53
阅读次数:
68
In this Document Symptoms Cause Solution References APPLIES TO:Oracle Database - Enterprise Edition - Version 12.1.0.1 to 12.1.0.2 [Release 12.1]Infor ...
分类:
其他好文 时间:
2020-06-11 21:22:34
阅读次数:
64
1.CentOS下载 rpm文件到机器https://code.visualstudio.com/download2.到下载目录,运行 3.rpm -iv code-1.45.1-1589445456.el7.x86_64.rpm4.提示libXss.so.1()(64bit) 被 code-1.4 ...
分类:
其他好文 时间:
2020-06-11 13:36:11
阅读次数:
258
AES 只是个基本算法,实现 AES 有几种模式,主要有 ECB、CBC、CFB 和 OFB CTR,直接上代码,此处为AES加密中的CBC模式,EBC模式与CBC模式相比,不需要iv。 import base64from Crypto.Cipher import AES from binascii ...
分类:
编程语言 时间:
2020-05-30 10:44:36
阅读次数:
69
def dollar(n): global story_money money = [] for i in range(10): if 2**(i+1) > story_money-sum(money): money.append(story_money-2**i+1) break money.ap ...
分类:
其他好文 时间:
2020-05-29 21:29:12
阅读次数:
188
package LeetCode_377 /** * 377. Combination Sum IV * https://leetcode.com/problems/combination-sum-iv/description/ * * Given an integer array with all ...
分类:
其他好文 时间:
2020-05-27 18:53:27
阅读次数:
60
1.连上手机,点击数据备份可以选择,文件类型进行备份,以图片测试为例。 2.备份完本地的存储目录结构,其中picture.xml存储有Iv字段,初步怀疑是AES的向量,加密文件是.enc为后缀,backupinfo.ini有password等字段。 3.进行加密文件函数关键字定位,可以找到对应函数, ...
分类:
移动开发 时间:
2020-05-26 12:18:54
阅读次数:
95
先给大家展示一下效果图: 点击头像会弹出对话框,提示选择路径相机,相册 代码如下: private ImageView iv; iv=findViewById(R.id.imagetouxiang); iv.setOnClickListener(new View.OnClickListener() ...
分类:
移动开发 时间:
2020-05-24 00:09:54
阅读次数:
81