搜索资源列表
bmrsa11
- rsa realisation in c++ language
ktail
- 很多情况下,我们需要对信息进行加密。特别是随着Internet的飞速发展,加密技术就显得尤为重要。 目前比较流行的编码规则称为RSA,是由美国麻省理工学院的三位教授发明的。这种编码规则是基于一种求密去模算法的:对于给出的三个正整数a,b,c,计算a的b次方除以c的余数。 你的任务是编写一个程序计算a^b mod c, 并且1≤a,b<c≤32768。 -top secret
rsa
- 本程序主要用C实现了RSA算法。具体为输入数字进行RSA加密或解密。可根据自己要求做出适当修改。-C major with the procedures of the RSA algorithm realization. Specific figures for the importation of RSA encryption or decryption. May request in accordance with their amended as appropriate.
RSA
- 一些常用的c语言源代码,帮助初学者掌握c++的一些使用方法-Some common c language source code to help beginners master c++ some use
RSAc
- WINDOWS C RSA 的具体实现 WINDOWS C RSA 的具体实现 -WINDOWS C RSA concrete realization
rsa_1024progrom
- 利用C语言实现RSA加密算法。备注;数据只能是大写字母组成的字符串。 加密的时候,输入Y,然后输入要加密的文本(大写字母) 解密的时候,输入N,然后输入一个整数n表示密文的个数,然后n个整数表示加密时候得到的密文。-C language implementation of the RSA encryption algorithm. Remarks data can only be a string of capital letters. Encrypted, enter Y, an
RSA
- C++代码实现对一段文字实现加密解密,而且运用了相关VB的知识,对项目进行了界面设计。-C++ code implements the encryption and decryption of the paragraph of text, but also the use of the VB knowledge about interface design project.
RSA
- 四种加密算法之RSA源代码-C++ (包含一个头文件和一个cpp文件)-Four encryption algorithm RSA source code-C++ (including a header file and a cpp file)
RSA
- 用C语言实现教科书式的RSA加密算法,无错版-C language textbook RSA encryption algorithm, error-free version
RSA
- RSA密码算法的C++实现(输入明文输出密码)-RSA cryptographic algorithm C++ achieved (outputs the input plaintext password)
RSA
- RSA算法,输入公钥求解私钥,最后对明文进行加密,但是只是针对一个元素,计算机安全与保密作业,C语言-RSA algorithm for solving public input private key to encrypt the plaintext last, but only for one element, computer security and privacy operations, C language
RSA_DES
- 用C++实现的DES加密算法和RSA加密算法,控制台显示,可同时查看明文和密文,可自主设置密钥-Using C++ DES encryption algorithm and RSA encryption algorithm, the console display can simultaneously view the plaintext and ciphertext can be independently set key
RSA-program
- 在VC平台上用c++实现的RSA加密解密算法-Implementation of RSA encryption algorithm
rsa
- a c program to implement the RSA decryption/encryption function.
openssl_rsa_tool
- 基于openssl封装的c++ rsa加解密(C++ RSA encryption and decryption based on OpenSSL)
test
- 在使用RSA进行相应的加解密过程,用简单的c语言实现过程,仅供参考。(The corresponding encryption and decryption process can be carried out)
cuda-rsa4k-master
- RSA算法cuda并行优化实现(c语言版)(RSA algorithm CUDA parallel optimization (C language version))
CUDA_Encryption-master
- 改进的RSA算法CUDA优化实现,C语言(Improved RSA algorithm CUDA optimization implementation, C language)
Rsa
- 基于DES和RSA的加密聊天工具,共包含4个文件: chat.cpp、des.h、rsa.h、makefile。 编译:命令行模式下,切换到代码所在目录,输入make后回车即可。 运行:命令行模式下输入 ./chat,然后选择程序执行角色(客户端或服务器),如选择服务器,则程序自动打开端口开始监听;如选择客户端,则需要输入服务器地址。最后输入命令quit退出程序。 此外,代码中实现了异步,select以及普通三种IO模型,需要通过定义宏控制。(Encrypted Chat Tool Bas
RSA加解密和素性检验
- 1. rsa加密算法和rsa解密算法的c语言实现 2. 大素数检验 3. 自动生成p,q,e