码迷,mamicode.com
首页 >  
搜索关键字:cipher    ( 567个结果
使用Wireshark查看HTTPS中TLS握手过程
通过使用Wireshark抓包分析TLS握手的过程,可以更容易理解和验证TLS协议,本文将先介绍Wireshark解密HTTPS流量的方法,然后分别验证TLS握手过程和TLS会话恢复的过程。 一、使用Wireshark解密HTTPS流量的方法 TLS对传输数据进行了加密,直接使用Wireshark查 ...
分类:Web程序   时间:2020-04-04 11:37:45    阅读次数:208
Linux 使用 scp 命令远程拷贝文件和目录
使用方法: 使用示例: ...
分类:系统相关   时间:2020-04-02 21:07:36    阅读次数:92
网络安全课 02 (古典加密体制)
信息论基础与古典加密技术 经典代换密码(Substitution Cipher) Caesar密码--26位字母移位操作 单表代换密码--代换表 Playfair密码 Hill密码 多表代换密码 Vigenère Cipher 置换密码(Transposition/Permutation Ciphe ...
分类:其他好文   时间:2020-04-01 13:14:33    阅读次数:78
算法竞赛入门经典 第四章
"√ ] [UVA1339 古老的密码 Ancient Cipher" " ] [UVA489 刽子手的游戏 Hangman Judge" " ] [UVA133 救济金发放 The Dole Queue" " ] [UVA213 信息解码 Message Decoding" " ] [UVA512 ...
分类:编程语言   时间:2020-03-25 19:51:29    阅读次数:108
凯撒密码B
def encryption(str, n): cipher = [] for i in range(len(str)): if str[i].islower(): if ord(str[i]) < 123-n: #ord('z')=122 c = chr(ord(str[i]) + n) ciph ...
分类:其他好文   时间:2020-03-23 20:16:24    阅读次数:67
ssh修改默认端口号后无法连接(提示ssh: Could not resolve hostname)
ssh命令语法:usage:ssh[-46AaCfGgKkMNnqsTtVvXxYy][-Bbind_interface][-bbind_address][-ccipher_spec][-D[bind_address:]port][-Elog_file][-eescape_char][-Fconfigfile][-Ipkcs11][-iidentity_file][-J[user@]host[:p
分类:其他好文   时间:2020-03-18 13:20:04    阅读次数:1904
C# MarshalAs
作用: MarshalAs属性指示如何在托管代码和非托管代码之间封送数据。 使用方法: [MarshalAs(UnmanagedType unmanagedType, 命名参数)] 实际上相当于构造一个MarshalAsAttribute类的对象 常用的UnmanagedType枚举值:(详细内容查 ...
分类:Windows程序   时间:2020-03-17 10:17:53    阅读次数:194
Pexpect pxssh 连接时指定cipher
在/etc/ssh/ssh_config中添加远程服务器支持的cipher 如Ciphers aes128-cbc,3des-cbc,aes128-ctr 连接时指定ssh配置文件 from pexpect import pxssh client = pxssh.pxssh() clinet.log ...
分类:其他好文   时间:2020-03-12 19:17:37    阅读次数:85
mysql授权、导入等基本操作
1、授权: mysqladmin -uroot password rootpwd mysql -uroot -prootpwd mysql -e "INSERT INTO user (Host,User,Password,ssl_cipher,x509_issuer,x509_subject) VA ...
分类:数据库   时间:2020-03-06 17:06:48    阅读次数:79
C#NET字符编码加解密的参考代码
//C#NET字符编码加解密的参考代码我是从老外程序里面拷贝出来的希望对大家有所用 1 public string Encrypt(string name) { 2 byte ivId = GetIVId(name); 3 cipher.IV = GetIV(ivId); 4 var buf = E ...
分类:Windows程序   时间:2020-03-04 22:31:38    阅读次数:77
567条   上一页 1 ... 3 4 5 6 7 ... 57 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!