码迷,mamicode.com
首页 >  
搜索关键字:cryptography    ( 396个结果
安装python模块是报错Requirement already satisfied: pymysql in c:\python27\lib\site-packages (0.9.2) Requirement already satisfied: cryptography in c:\python27\lib\site-packages (fr om pymysql) (2.3.1)
问题: 安装pymysql时报错 Requirement already satisfied: pymysql in c:\python27\lib\site-packages (0.9.2)Requirement already satisfied: cryptography in c:\pyth ...
分类:数据库   时间:2021-05-24 13:51:05    阅读次数:0
CS DES任意长度密钥加密
CS DES任意长度密钥加密 private static string Encrypt2(string str, string sKey) { string s = ""; using (System.Security.Cryptography.DESCryptoServiceProvider d ...
分类:其他好文   时间:2021-04-01 12:53:38    阅读次数:0
Security and Cryptography in Python - Hash Functions(3)
Security and Cryptography in Python - Hash Functions(3) How password are Verified https://docs.python.org/3/library/hashlib.html https://en.wikipedia. ...
分类:编程语言   时间:2021-03-03 12:13:31    阅读次数:0
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
C# MD5加密字符串
public string GetMD5(string txt) { System.Security.Cryptography.MD5 md5 = new System.Security.Cryptography.MD5CryptoServiceProvider(); byte[] frmData ...
分类:Windows程序   时间:2021-01-12 11:08:56    阅读次数:0
Rsa加密 解密 签名 验签
RsaBaseParameters using System.Security.Cryptography; using System.Text; namespace Benchint.Util.Rsa.Models { /// <summary> /// RSA基础参数 /// </summary> ...
分类:其他好文   时间:2021-01-11 10:35:30    阅读次数:0
.pfx和.Cer 证书
通常情况下,作为文件形式存在的证书一般有三种格式: 第一种:带有私钥的证书,由Public Key Cryptography Standards #12,PKCS#12标准定义,包含了公钥和私钥的二进制格式的证书形式,以.pfx作为证书文件后缀名。 第二种:DER Encoded Binary (. ...
分类:其他好文   时间:2020-12-15 12:14:10    阅读次数:2
golang:常用加密算法学习总结之非对称加密
公开密钥密码学(英语:Public-key cryptography)也称非对称式密码学(英语:Asymmetric cryptography)是密码学的一种演算法。常用的非对称加密算法有 RSA DSA ECC 等。公开密钥加密 非对称加密算法使用公钥、私钥来加解密。 公钥与私钥是成对出现的。 多 ...
分类:编程语言   时间:2020-11-13 12:58:16    阅读次数:12
C# WebUtils
using System; using System.IO; using System.Text; using System.Collections.Generic; using System.Security.Cryptography.X509Certificates; using System. ...
分类:Windows程序   时间:2020-09-17 21:57:37    阅读次数:44
396条   1 2 3 4 ... 40 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!