上一页 1 2 3 4 5 6 ··· 11 下一页
摘要: 原理部分请看前面的文章: http://www.cnblogs.com/awsqsh/articles/4352286.html Source file: Signaure: RSA public key: Python Code: import mathimport sys,os m = 0x19 阅读全文
posted @ 2017-05-22 22:06 JustRelax 阅读(981) 评论(0) 推荐(0) 编辑
摘要: 3 How to compiler UI file from QT designer: D:\Python27\Scripts>pyside-uic.exe -o ui_mainwindow.py Tools.ui pyside-uic.exe -o ui_mainwindow.py Tools.u 阅读全文
posted @ 2017-05-22 20:28 JustRelax 阅读(201) 评论(0) 推荐(0) 编辑
摘要: Test running: 阅读全文
posted @ 2017-05-12 23:43 JustRelax 阅读(286) 评论(0) 推荐(0) 编辑
摘要: #!/bin/sh foreachd () { echo $1 for file in $1/* do if [ -d $file ] then echo "directory $file" foreachd $file fi if [ -f $file ] then echo "file $file" dos2unix $file chmod -x $file fi done } ech... 阅读全文
posted @ 2017-04-27 20:42 JustRelax 阅读(129) 评论(0) 推荐(0) 编辑
摘要: Shell: align.sh (未测试) 注意运算符两边要有空格。 #!/bin/bashfile_size=`ls -l $2 | awk '{print $ 5}'`align_size=`expr $file_size + $1 - 1`block_num=`expr $align_size 阅读全文
posted @ 2017-04-24 22:46 JustRelax 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 1 Original File test.bin 2 Run Script Modify One Byte, result: Modify One Word, result: Source Code: 阅读全文
posted @ 2017-04-23 12:59 JustRelax 阅读(375) 评论(0) 推荐(0) 编辑
摘要: 1 A SEQUENCE contains an ordered field of one or more types. It is encoded into a TLV triplet that begins with a Tag byte of 0x30. The following Certu 阅读全文
posted @ 2017-04-18 22:23 JustRelax 阅读(2878) 评论(0) 推荐(0) 编辑
摘要: 0 Pycrypto API document: https://www.dlitz.net/software/pycrypto/api/current/ 1 How to update PIP tool: python -m pip install --upgrade pip 2 How to i 阅读全文
posted @ 2017-03-24 22:54 JustRelax 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 1 Download Site: http://download.qt.io/archive/ I chosed: http://download.qt.io/archive/qt/4.8/4.8.6/ Need at least 1.2GB space. 2 pyside-uic.exe -o x 阅读全文
posted @ 2017-03-12 18:53 JustRelax 阅读(201) 评论(0) 推荐(0) 编辑
摘要: 1 mingw install 1.1 download from internet. 1.2 config windows environment. C_INCLUDE_PATH CPLUS_INCLUDE_PATH LIBRARY_PATH PATH 1.3 tes gcc -v 2 cd li 阅读全文
posted @ 2017-03-09 23:29 JustRelax 阅读(281) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 11 下一页