CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - rsa tool
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - rsa tool - List
[
Crack Hack
]
SecChat tool
DL : 0
RSA加密的聊天源代码-chat RSA encryption source code
Date
: 2008-10-13
Size
: 202.17kb
User
:
张文奇
[
Crack Hack
]
SecChat tool
DL : 0
RSA加密的聊天源代码-chat RSA encryption source code
Date
: 2025-12-17
Size
: 202kb
User
:
张文奇
[
Crack Hack
]
RsaTool
DL : 0
请在解压时看说明文档 内有详细说明 -please see note when extracting files containing detailed description Thank you
Date
: 2025-12-17
Size
: 78kb
User
:
wangkai
[
Crack Hack
]
RSAtool
DL : 0
这学期刚学密码学,RSA算法相对简单,于是写了这个小软件.开发环境:VC++6.0。 RSA的安全性依赖于大数分解。公钥和私钥都是两个大素数。据猜测,从一个密钥和密文推断出明文的难度等同于分解两个大素数的积。 数据加密算法RSA的关键在于大素数的生成,本软件采取数组形式解决大素数的存储和运算问题,可生成超过1024位的十进制数的大素数,以应用于数据加密。 RSA的缺点主要有:产生密钥很麻烦,受到素数产生技术的限制,因而难以做到一次一密。分组长度太大,为保证安全性,n 至少也要 600 bits以上,使运算代价很高,尤其是速度较慢,较对称密码算法慢几个数量级;且随着大数分解技术的发展,这个长度还在增加,不利于数据格式的标准化。 对于明文是字母、数字、符号、汉字的各种组合都能正确加密解密
Date
: 2025-12-17
Size
: 425kb
User
:
宋芬
[
Crack Hack
]
RSA_Tool
DL : 0
一个简单的RSA应用软件,可以对相关参数进行设定,对文件进行加密和解密
Date
: 2025-12-17
Size
: 39kb
User
:
123
[
Crack Hack
]
RSA
DL : 0
RSA算法的原理分析及实现。RSA是既能用于数据加密也能用于数字签名的一种非对称密码体制的算法。它有一对密钥,其中之一是私有密钥,由用户保存;另一个为公开密钥,可对外公开。并用VC++语言实现,通过MFC设计的一个小系统来模拟算法的简单应用-RSA algorithm and the realization of the principle. RSA is the best tool for data encryption can be used for digital signatures, a non-symmetric cryptography algorithms. It has a pair of keys, one of which is the private key, by the user preserved another for the public key can be made public. And VC++ Language, through the MFC designed a small system to the simple application of simulation algorithm
Date
: 2025-12-17
Size
: 3.52mb
User
:
dxh
[
Crack Hack
]
RSA_spadpa_attcaks_and_defenses_design_based_on_80
DL : 0
(繁体中文版)台湾出品不得多得的关于spa dpa 旁道攻击rsa算法的精彩论文。相对国内的一些翻译性质的、粗制滥造的论文,简直是一个天上一个地下。-As information technology has developed rapidly, it provides more convenient life for people. As the result, the security has become the main concern. Recently, user id and password are major methods to protect private information. However, the short password can be broken by hackers. Too long is not easy to memorize. Network traffic-analyzing tool provides the function to gain the user id and password while doing transaction via network. Therefore, low cost Smart Card including user name identification and cryptosystem algorithm has become new trend of modern society. The first object of this thesis is to present the design and implementati- on of a 512-bit RSA cryptosystem by using 8051 microcontroller. In RSA cryptosystem algorithm, modular exponentiation is the essential arithmetic operation. However, 8051 microcontroller does not provide the modular exponentiation. In order to complete RSA cryptosystem, this thesis has mentioned that using L-algorithm to transfer to modular mult
Date
: 2025-12-17
Size
: 512kb
User
:
wang carl
[
Crack Hack
]
EncryptDectyptTool_Src
DL : 1
写了一个文件加解密工具(VC9+OPENSSL) CA程序: 生成2个RSA密钥对,分别保存为PEM格式,密码保护私钥,文件名为“RSAPrivateKey.pem”和“RSAPublicKey.pem”。 加密: 将指定明文文件加密,密文件格式自已定义,要求文件内容用对称算法(3des)加密,对称密钥(KEY)为随机生成,随机密钥用“RSAPrivateKey.pem”的公钥加密后,存放在密文文件头内(KEY1);对明文文件做摘要计算(HASH),将计算结果用“RSAPublicKey.pem”的私钥加密后(SIGN),放到密文文件头内;文件头内有明文的原始长度信息。 解密: 将密文文件解密成明文文件,流程与加密相反,先用“RSAPrivateKey.pem”私钥解密(KEY1)数据,得出随机密钥(KEY);用随机密钥对密文解密,得到明文文件;对明文文件进行摘要计算,得出HASH1;用“RSAPublicKey.pem”公钥解密SIGN,得出HASH2;HASH1与HASH2做对比,相同表示解密成功,不同表示解密失败。 密文文件头内可以保存原始加密人的信息以及解密人的信息,这样可以快速判断解密者是否有权限解密该密文文件,如果有权限则进行解密过程,否则直接提示没有权限解密。 -To write a file encryption and decryption tool (VC9+ OPENSSL) CA procedures: Generates two RSA key pairs, respectively, save for the PEM format, password-protected private key, the file named "RSAPrivateKey.pem" and "RSAPublicKey.pem". Encryption: The specified plaintext file encryption, secret self-definition file formats require the document to use symmetric algorithms (3des) encryption, symmetric key (KEY) is randomly generated, random key to use "RSAPrivateKey.pem" public key encryption, stored in the ciphertext header inside (KEY1) summary of the calculation of the plaintext file to do (HASH), the calculation results with the "RSAPublicKey.pem" private key encryption (SIGN), into ciphertext in the file header file header if there is express The original length of the message. Decryption: Decrypt the ciphertext into a plaintext file documents, processes and encrypt the contrary, the first to use "RSAPrivateKey.pem" decrypt the private key (KEY1) data, derived random k
Date
: 2025-12-17
Size
: 1.05mb
User
:
张希行
[
Crack Hack
]
NetBoxDex
DL : 0
NetBoxDex v0.1 (NetBox 解包工具源码) NetBox 是一个全新概念的开发平台,它提供了业界最快速的用于开发 Internet 商业应用的开发和编译工具。NetBox 支持包括 JavaScript、VBScript、Perl 等目前应用最为广泛的脚本语言来构建功能强大和性能稳定的应用服务器、网络服务器以及 HTML-Based 网络多媒体桌面应用。NetBox 支持目前最为流行的 XML 和 Web Service 工业标准和 ASP、COM、.NET 等流行标准,NetBox 对第三方数据库的完美支持使您新构建的商务应用可以容易的将已有的应用系统整合进来,从而充分利用现有的 IT 资源,大大的节约投资。NetBox 提供的 SSL、TLS 安全协议、RSA、DES 等加密算法和独立于应用程序的虚拟机技术使您的数据得到最大限度的保护。NetBox 提供将应用部署到无线设备的能力。NetBox 提供将您的应用编译成独立可执行文件的能力,极大的加快运行速度和代码安全性。使用 NetBox 开发,大大提高了应用系统的可扩展性、稳定性和安全性。NetBox 的出现也首次让应用软件开发商能够如此快速和容易的构建完整的基于 Internet 强大应用。-NetBoxDex v0.1 (NetBox unpack tool source) NetBox is a new concept of development platform, which provides the industry s most rapid development of Internet business applications for the development and build tools. NetBox support including JavaScript, VBScript, Perl, etc. Currently the most widely used scripting language to build powerful and stable performance of application servers, Web servers and HTML-Based Network Multimedia desktop application. NetBox support the current most popular industry-standard XML and Web Service and ASP, COM,. NET and other popular standards, NetBox the perfect support for third-party database to build your new business applications can easily integrate to existing applications in, to make full use of existing IT resources, dramatically reduce investment. NetBox provided by SSL, TLS security protocols, RSA, DES and other encryption algorithms and application-independent virtual machine technology enables you to get maximum protection of data. NetBox w
Date
: 2025-12-17
Size
: 301kb
User
:
程光
[
Crack Hack
]
RSA
DL : 0
一个简单的RSA加密工具,能实现简单的加密。-A simple tool for RSA,it can encrpty something simple.
Date
: 2025-12-17
Size
: 39kb
User
:
梁瑞凡
[
Crack Hack
]
CSP
DL : 0
CSP小工具 本工具使用微软CSP技术进行加解密处理,支持的加解密算法如下:3DES(对称加解密)、RSA(非对称加解密)、RSA签名以及验证。 使用方法参见:http://fangshunbao.blog.sohu.com/155851927.html 作者:山大王 作者博客:http://fangshunbao.blog.sohu.com/-This tool uses a small tool CSP CSP technology for Microsoft' s encryption and decryption processing, support of encryption and decryption algorithm is as follows: 3DES (symmetric encryption), RSA (asymmetric encryption), RSA signature and verification. Use see: http://fangshunbao.blog.sohu.com/155851927.html of: Shanda Wang on blog: http://fangshunbao.blog.sohu.com/
Date
: 2025-12-17
Size
: 220kb
User
:
山大王
[
Crack Hack
]
iliyu_51775964004477
DL : 0
RSA算法的原理分析及实现。RSA是既能用于数据加密也能用于数字签名的一种非对称密码体制的算法。它有一对密钥,其中之一是私有密钥,由用户保存;另一个为公开密钥,可对外公开。并用VC++语言实现,通过MFC设计的一个小系统来模拟算法的简单应用-RSA -RSA algorithm and the realization of the principle. RSA is the best tool for data encryption can be used for digital signatures, a non-symmetric cryptography algorithms. It has a pair of keys, one of which is the private key, by the user preserved another for the public key can be made public. And VC++ Language, through the MFC designed a small system to the simple application of simulation algorithm
Date
: 2025-12-17
Size
: 17kb
User
:
jack
[
Crack Hack
]
mychat
DL : 0
使用mfc编程实现了一个网络聊天工具。该工具具有加解密功能,分为客户端和服务器端。用到了rsa,des,sha1安全算法。-Mfc programming using an online chat tool. The tool has the encryption and decryption functions, divided into client and server side. Used in the rsa, des, sha1 security algorithms.
Date
: 2025-12-17
Size
: 51.11mb
User
:
wanyihan
[
Crack Hack
]
page804
DL : 0
Software Tool for Implementing RSA Algorithm RSA basics
Date
: 2025-12-17
Size
: 134kb
User
:
Ariunchimeg
[
Crack Hack
]
miracl5.3.11
DL : 0
这是最新的MIRACL的最新版本,支持多种算法,如IBE加密、签名、验证-MIRACL is a Big Number Library which implements all of the primitives necessary to design Big Number Cryptography into your real-world application. It is primarily a tool for cryptographic system implementors. RSA public key cryptography, Diffie-Hellman Key exchange, DSA digital signature, they are all just a few procedure calls away. Support is also included for even more esoteric Elliptic Curves and Lucas function based schemes. The latest version offers full support for Elliptic Curve Cryptography
Date
: 2025-12-17
Size
: 1.39mb
User
:
yoy
[
Crack Hack
]
RSAToolRSA_gen_pravite_public_key
DL : 0
生成RSA的私钥公钥的工具,工作中使用,缺点公钥只能生成32bit的长度。-RSA public key generated private key tool for use at work, the shortcomings of the public key can only generate 32bit length.
Date
: 2025-12-17
Size
: 74kb
User
:
lawson
[
Crack Hack
]
RSATool2v14
DL : 0
国际算法RSA验证工具,可以计算RSA算法的结果正确与否- International RSA algorithm validation tool, the results can be calculated RSA algorithm is correct or not
Date
: 2025-12-17
Size
: 70kb
User
:
王强
[
Crack Hack
]
TestRSA
DL : 0
RSA相关算法的测试工具的代码,可是测试加解密等相关简单算法(RSA related algorithms test tool code, but test and decryption and other related simple algorithms)
Date
: 2025-12-17
Size
: 1.3mb
User
:
小馨1670862056
[
Crack Hack
]
RSATool
DL : 0
RSA密钥随机生成,且加解密工具,开发工具VS2003(This is a RSA tool,include encrypt and decrypt method.)
Date
: 2025-12-17
Size
: 114kb
User
:
荆棘鸟2018
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.