码迷,mamicode.com
首页 >  
搜索关键字:cipher    ( 567个结果
Security and Cryptography in Python - Block Cipher(2)
Security and Cryptography in Python - Block Cipher(2) Double DES from pyDes import * import random message = "01234567" key_11 = random.randrange(0, 2 ...
分类:编程语言   时间:2021-02-10 13:31:04    阅读次数:0
Security and Cryptography in Python - Attack on Caesar Cipher
Security and Cryptography in Python - Attack on Caesar Cipher Crypto Rule #1(Kerckhoffs' Principle) Eve should not be able to break the ciphers even w ...
分类:编程语言   时间:2021-02-01 12:50:36    阅读次数:0
Java使用Cipher类实现加密,包括DES,DES3,AES和RSA加密
一、先看一个简单加密,解密实现 1.1 加密 /** content: 加密内容 slatKey: 加密的盐,16位字符串 vectorKey: 加密的向量,16位字符串 */ public String encrypt(String content, String slatKey, String ...
分类:编程语言   时间:2021-01-08 10:38:42    阅读次数:0
网易云音乐爬取分析
仅供个人学习研究使用 from Crypto.Cipher import AES # 非对称加密 import rsa # 对成加密 import execjs # PyExecJs可以使用Python模拟运行js代码 import base64 import requests first_para ...
分类:其他好文   时间:2021-01-07 12:42:58    阅读次数:0
elasticsearch7.2.1 报错 Received fatal alert: handshake_failure
报错信息 master 报错日志信息 :elastic ssl.SSLHandshakeException: no cipher suites in common node 节点报错日志信息 :[2020-08-28T03:51:07,537][WARN ][o.e.t.OutboundHandle ...
分类:其他好文   时间:2020-09-14 19:01:43    阅读次数:76
H3C MSR830 V5.01 PPPOE拨号配置
interface Dialer10 nat outbound link-protocol ppp ppp chap user abc@cnblog.cn ppp chap password cipher $c$3$8saZDC90/7QyfHlTQohSYzVMJhdAzLI3jJQADzw= p ...
分类:其他好文   时间:2020-08-05 00:11:24    阅读次数:124
java常用加解密工具类
package com.sh.springboottdemo2.util; import com.sun.org.apache.xerces.internal.impl.dv.util.Base64; import javax.crypto.Cipher; import javax.crypto.K ...
分类:编程语言   时间:2020-08-04 09:44:58    阅读次数:66
华为模拟器配置telnet
首先配置PC的IP 地址 192.168.1.1 然后在交换机配置: 进入系统视图 system-view 输入aaa 进入3a认证模式 local-user 用户名 password cipher 密码 privilege 等级 设置用户为telnet用户 退出到系统视图界面 设置一个虚拟IP地址 ...
分类:Web程序   时间:2020-07-23 22:16:10    阅读次数:186
AES ECB模式+BASE64加解密
import org.apache.commons.codec.binary.Base64; import javax.crypto.Cipher; import javax.crypto.spec.SecretKeySpec; /** * Created with IntelliJ IDEA. * ...
分类:其他好文   时间:2020-07-23 01:40:14    阅读次数:101
016.Nginx HTTPS
一 HTTPS概述 1.1 HTTPS介绍 超文本传输安全协议HTTPS(Hypertext Transfer Protocol Secure)是超文本传输协议和SSL/TLS的组合,用以提供加密通讯及对网络服务器身份的鉴定。 HTTPS也可以理解为HTTP over SSL,即HTTP连接建立在S ...
分类:Web程序   时间:2020-07-21 13:59:31    阅读次数:87
567条   上一页 1 2 3 4 ... 57 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!