码迷,mamicode.com
首页 >  
搜索关键字:cipher    ( 567个结果
POJ 1026 Cipher(置换)
Cipher Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 19502   Accepted: 5239 Description Bob and Alice started to use a brand-new encoding scheme....
分类:其他好文   时间:2014-10-15 17:34:21    阅读次数:274
Node.js v0.10.31API手册-加密
加密(Crypto) 使用 require('crypto') 来调用该模块。 crypto模块提供在HTTPS或HTTP连接中封装安全凭证的方法。 它提供OpenSSL中的一系列哈希方法,包括hmac、cipher、decipher、签名和验证等方法的封装。 crypto.getCiphers() 返回一个数组,包含支持的加密算法的名字。 示例: var...
分类:Windows程序   时间:2014-10-13 23:32:27    阅读次数:515
Vigenère Cipher 维吉尼亚加解密算法
维吉尼亚的加解密有两种方法。第一种是查表:第一行为明文,第一列为密钥,剩余的为对应的密文第二种方法是转化计算法:逐个将字符转化为从零开始的数字,对数字进行加密/解密后,再转化为字符。本文要用c++实现第二种方法,并且为了操作方便,使用了MFC框架(附工程下载)核心代码如下://cipher.h 额....
分类:编程语言   时间:2014-10-13 18:54:21    阅读次数:317
JavaScript- The Good Parts Chapter 4
Why, every fault’s condemn’d ere it be done:Mine were the very cipher of a function. . .—William Shakespeare, Measure for MeasureThe best thing about ...
分类:编程语言   时间:2014-10-01 14:47:31    阅读次数:190
UVA 306 Cipher
题意 :lucky cat里有翻译。英文也比较好懂。很容易发现有周期然后就拍就好了注意每组数据后边都有空行 包括最后一组。一开始以为最后一组没有空行。唉。。#include #include #include #include #include #include #include #include ...
分类:其他好文   时间:2014-09-27 16:21:40    阅读次数:155
Android 与 SUN JAVA RSA 加解密不同之处
默认情况下无法通用因为默认的填充方式不同。做以下处理能够到达一致:android:Cipher cipher = Cipher.getInstance("RSA/None/NoPadding");sun java:Cipher cipher = Cipher.getInstance("RSA", ....
分类:移动开发   时间:2014-09-25 21:35:57    阅读次数:178
uva--1339 - Ancient Cipher(模拟水体系列)
1339 - Ancient CipherAncient Roman empire had a strong government system with various departments, including a secret service department. Important d....
分类:其他好文   时间:2014-09-21 00:05:59    阅读次数:295
POJ 2159
稍加分析后,你会发现,就是统计次数而已#include #include using namespace std;int a[110],b[110];int aa[30],bb[30];char cipher[110],m[110];int main(){ while(scanf("%s",ciph...
分类:其他好文   时间:2014-09-16 23:31:01    阅读次数:296
bzoj 1031: [JSOI2007]字符加密Cipher 後綴數組模板題
1031: [JSOI2007]字符加密CipherTime Limit:10 SecMemory Limit:162 MBSubmit:3157Solved:1233[Submit][Status]Description喜欢钻研问题的JS 同学,最近又迷上了对加密方法的思考。一天,他突然想出了一种...
分类:Web程序   时间:2014-09-14 19:16:07    阅读次数:231
AES算法加密java实现
AES算法加密java实现 import java.security.Key; import javax.crypto.Cipher; import javax.crypto.KeyGenerator; import javax.crypto.SecretKey; import javax.crypto.spec.SecretKeySpec;...
分类:编程语言   时间:2014-08-30 13:56:09    阅读次数:274
567条   上一页 1 ... 52 53 54 55 56 57 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!