Location:
Search - rsades
Search list
Description: 使用RSA和DES两种算法为基础,设计实现了一个简单的网络传输模型。模型里有两个类,Server和Client,Server端要将自己的公钥发给Client,然后Client将自己的DES密钥通过RSA加密发给Server 端。之后双方可以通过DES对称加密进行通信。-Two algorithms using the RSA and the DES, based on designs and implements a simple model of network transmission. Model, there are two classes, Server and Client, Server-side to their own public key sent to Client, then Client will own DES key encrypted via RSA distributed Server-side. After the two sides can communicate through the DES symmetric encryption.
Platform: |
Size: 1091584 |
Author: 林晓波 |
Hits:
Description: res des 混合加密 MFC界面友好 速度快 -res des hybrid encryption MFC user-friendly speed
Platform: |
Size: 3186688 |
Author: machangsha |
Hits:
Description: RSA DES加密解密的是实现-RSA DES encryption and decryption is the Implementation
Platform: |
Size: 2048 |
Author: liyi |
Hits:
Description: c++编写的一个数据加密程序,里面有Des和RSA算法,对初学者很有参考意义-c++ written in a data encryption program, which has Des and the RSA algorithm, useful reference for beginners
Platform: |
Size: 136192 |
Author: 德科夫 |
Hits:
Description: RSA算法实现的C语言代码,需要SSL库支持。-RSA CODE
Platform: |
Size: 73728 |
Author: gaowei |
Hits:
Description: java实现rsades混合加密的密钥分配-key disribution by rsa and des
Platform: |
Size: 636928 |
Author: 宋磊 |
Hits:
Description: DES和RSA混合加密DES密码体制主要由3方面组成:密钥生成、加密函数以及解密函数。该算法在VC6.0的平台下以C++来实现。子函数说明- Void SetKey(const char* Key, int len)
{
Memset(deskey,0,16)
Memcpy(deskey,key,len>16?16:len)
SetSubKey(&SubKey[0],&deskey[0])
Is3DES = len>8 ? (SetSubKey[1],&deskey[8]),ture) : false
}
Void SDES(char Out[8],char In[8],const PSubKey pSubKey,bool Type)
{
Static bool M[64],tmp[32],*Li=&M[0],*Ri=&M[32]
ByteToBit(M,In,64)
Transform(M,M,IP_Table,64)
If( Type == ENCRYPT){
For(int i=0 i<16 ++i){
Memcpy(tmp,Ri,32)
F_func(Ri,(*pSUBkEY)[I])
Xor(Ri,Li,32)
Memcpy(Li,tmp,32)
}
}else{
For(int i=15 i>=0 --i){
Memcpy(tmp.Li,32)
F_func(Li,(*pSubKey)[i])
Xor(Li,Ri,32)
Memcpy(Ri,tmp,32)
}
}
Transform(M,M,IPR_Table,64)
BitToByte(Out,M,64)
}
Platform: |
Size: 131072 |
Author: 何旭 |
Hits: