CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - rsa

搜索资源列表

  1. RSA

    0下载:
  2. RSA算法是第一个能同时用于加密和数字签名的算法,也易于理解和操作。RSA是被研究得最广泛的公钥算法,从提出到现在已近二十年,经历了各种攻击的考验,逐渐为人们接受,普遍认为是目前最优秀的公钥方案之一(The RSA algorithm is the first algorithm that can be used for both encryption and digital signature at the same time. It is also easy to understand an
  3. 所属分类:加密解密

    • 发布日期:2018-01-07
    • 文件大小:194560
    • 提供者:木南花开
  1. RSA加解密算法

    0下载:
  2. 通过上机操作,使同学生对公钥加密算法RSA密码体制的加、解过程有一个更加清晰地认识。通过本次实验,加深学生对公钥密码体制的认识,为后面的学习打下基础。(Through the operation of the computer, there is a clearer understanding of the process of adding and solving the RSA cryptosystem of the public key encryption algorithm. Thro
  3. 所属分类:其他

    • 发布日期:2018-01-07
    • 文件大小:3072
    • 提供者:斩月
  1. RSA

    0下载:
  2. python实现的RSA加密解密算法,带图形界面,key.py随机生成公钥私钥,消息可利用加密器解密器进行加密(Python implementation of the RSA encryption and decryption algorithm, with a graphical interface. The key.py randomly generated public key private key, and the message can be encrypted by the RS
  3. 所属分类:加密解密

    • 发布日期:2018-01-08
    • 文件大小:7532544
    • 提供者:Ming丶彬
  1. RSA-master

    0下载:
  2. RSA算法,本人亲测有效,有需要的请自行下载(RSA algorithm, I personally pro test, if necessary, please download)
  3. 所属分类:加密解密

    • 发布日期:2018-01-09
    • 文件大小:14336
    • 提供者:有缘人111
  1. RSA加密解密

    1下载:
  2. 利用RSA对大数进行加密和解密,同时对大数进行计算,如大数相加、相减、及相乘(Using RSA to encrypt and decrypt large numbers, and calculate the number of large numbers, such as adding, subtracting, and multiplying large numbers.)
  3. 所属分类:加密解密

    • 发布日期:2018-01-09
    • 文件大小:367616
    • 提供者:lala_
  1. rsa

    0下载:
  2. RSA加密解密,实测可用,可以下载看看;仅供学习,请不要用于商务用途(RSA encryption and decryption)
  3. 所属分类:其他

    • 发布日期:2018-01-09
    • 文件大小:2048
    • 提供者:whe23
  1. RSA

    0下载:
  2. 实现rsa简单加密解密,运行后输入选择功能,输入秘钥和数字进行加解密操作(simple rsa encrytion and decryption)
  3. 所属分类:其他

    • 发布日期:2018-01-10
    • 文件大小:37888
    • 提供者:sunsLorenzo
  1. rsa

    0下载:
  2. QT上RSA加密算法实现,附带图形界面,更加直观(Implementation of RSA encryption algorithm)
  3. 所属分类:加密解密

  1. RSA加解密的设计与实现--程序+报告

    2下载:
  2. 制作一个RSA的加解工具的过程: 1、随机搜索大素数,随机生成公钥和私钥; 2、用公钥对任意长度的明文加密; 3、用私钥对密文解密; 4、界面简洁、交互操作性强。 5、(可选)实现对汉字的加解密,把加密结果存放在文本文档(The design process of making a RSA encryption tool: 1. The large prime number is searched randomly and the public key and the priv
  3. 所属分类:其他

    • 发布日期:2018-04-20
    • 文件大小:96256
    • 提供者:SJJXZ
  1. RSA

    0下载:
  2. Implementation of RSA in python
  3. 所属分类:加密解密

    • 发布日期:2018-04-21
    • 文件大小:3072
    • 提供者:prateek22
  1. RSA Cryptography

    0下载:
  2. theoretical analysis of RSA cryptography
  3. 所属分类:其他

    • 发布日期:2018-04-21
    • 文件大小:14336
    • 提供者:prithi
  1. RSA Encryption

    0下载:
  2. RSA encryption algorithm
  3. 所属分类:Java编程

    • 发布日期:2018-04-22
    • 文件大小:5120
    • 提供者:rabin123
  1. 易语言RSA算法模块

    0下载:
  2. 完整的RSA算法历程,加密解密,生成秘钥(Course, the complete RSA algorithm encryption and decryption, key generation)
  3. 所属分类:易语言编程

    • 发布日期:2018-04-23
    • 文件大小:7168
    • 提供者:JokerDSDS
  1. ALI360X-ALI351X_Tool-0.4 (RSA)

    0下载:
  2. RSA ALI 360X TOOL-04
  3. 所属分类:Windows编程

    • 发布日期:2018-04-23
    • 文件大小:226304
    • 提供者:khalil2000
  1. rsa

    0下载:
  2. 1.问题描述 RSA密码系统可具体描述为:取两个大素数p和q,令n=pq,N=(p-1)(q-1),随机选择整数d,满足gcd(d,N)=1,ed=1 modN。 公开密钥:k1=(n,e) 私有密钥:k2=(p,q,d) 加密算法:对于待加密消息m,其对应的密文为c=E(m)=me(modn) 解密算法:D(c)=cd(modn) 2.基本要求 p,q,d,e参数选取合理,程序要求界面友好,自动化程度高。 4. 实现提示 要实现一个真实的RSA密码系统,主要考虑对大整数的处理。P
  3. 所属分类:加密解密

    • 发布日期:2018-04-29
    • 文件大小:1108992
    • 提供者:Appoint
  1. RSA GPU实现

    0下载:
  2. RSA算法运用cpu和gpu并行实现(C语言版)(RSA algorithm is implemented in parallel with CPU and GPU (C language version).)
  3. 所属分类:系统/网络安全

    • 发布日期:2018-05-02
    • 文件大小:12288
    • 提供者:z豪
  1. rsa

    0下载:
  2. java平台实现rsa算法,自动进行加密解密输出密文(Implementation of RSA algorithm on Java platform)
  3. 所属分类:其他

    • 发布日期:2018-05-02
    • 文件大小:1024
    • 提供者:丶凉橙
  1. easy-rsa-3.0.5

    0下载:
  2. 一个easy-rsa秘钥3.0.5版本,供生成加密key(A easy-rsa secret key 3.0.5 version for the generation of encrypted key)
  3. 所属分类:Linux/Unix编程

    • 发布日期:2018-05-03
    • 文件大小:652288
    • 提供者:so天空la
  1. rsa数字签名

    0下载:
  2. rsa数字签名系统,c++,MFC实现,自动生成秘钥(Rsa digital signature system, c++, MFC implementation, automatic key generation)
  3. 所属分类:加密解密

    • 发布日期:2018-05-06
    • 文件大小:58368
    • 提供者:小童117
  1. rsa

    1下载:
  2. RSA加密解密,C++语言实现,可以自由输入中英文,符号,数字等各类字符(RSA encryption and decryption)
  3. 所属分类:加密解密

    • 发布日期:2020-01-19
    • 文件大小:216064
    • 提供者:Robin078
« 1 2 ... 5 6 7 8 9 1011 12 13 14 15 ... 50 »
搜珍网 www.dssz.com