borZoi-1.0.2

所属分类:加密解密
开发工具:Visual C++
文件大小:517KB
下载次数:59
上传日期:2009-02-22 11:40:18
上 传 者hyaswine
说明:  一个很全很强大的密码算法库,是一个大学研究机构编写的,可以用来作算法分析和仿真验证。
(a crypto library includs various algorithm, such as aes, des ,ecc ,rsa ...)

文件列表:
borZoi-1.0.2\aclocal.m4 (236933, 2003-09-21)
borZoi-1.0.2\AUTHORS (36, 2002-03-26)
borZoi-1.0.2\borZoi.dsp (4268, 2002-03-26)
borZoi-1.0.2\borZoi.plg (2146, 2002-03-26)
borZoi-1.0.2\borZoi.vcproj (4138, 2002-04-10)
borZoi-1.0.2\borZoi_test.dsp (4395, 2002-03-26)
borZoi-1.0.2\borZoi_test.dsw (829, 2002-03-26)
borZoi-1.0.2\borZoi_test.ncb (91136, 2002-05-11)
borZoi-1.0.2\borZoi_test.plg (4818, 2002-05-11)
borZoi-1.0.2\borZoi_test.sln (1432, 2002-03-26)
borZoi-1.0.2\borZoi_test.vcproj (3638, 2002-03-26)
borZoi-1.0.2\ChangeLog (3590, 2003-09-21)
borZoi-1.0.2\config.guess (41362, 2003-08-18)
borZoi-1.0.2\config.sub (29973, 2003-08-18)
borZoi-1.0.2\configure (666105, 2003-09-21)
borZoi-1.0.2\configure.in (1282, 2003-09-21)
borZoi-1.0.2\COPYING (17992, 2002-03-26)
borZoi-1.0.2\depcomp (13681, 2003-08-21)
borZoi-1.0.2\INSTALL (864, 2002-03-26)
borZoi-1.0.2\install-sh (5598, 2002-03-26)
borZoi-1.0.2\ltconfig (97744, 2002-03-26)
borZoi-1.0.2\ltmain.sh (183495, 2003-08-18)
borZoi-1.0.2\Makefile.am (415, 2002-03-30)
borZoi-1.0.2\Makefile.in (16979, 2003-09-21)
borZoi-1.0.2\missing (6283, 2002-03-26)
borZoi-1.0.2\mkinstalldirs (722, 2002-03-26)
borZoi-1.0.2\NEWS (0, 2002-03-26)
borZoi-1.0.2\src\aes.cpp (3870, 2002-03-28)
borZoi-1.0.2\src\asn.cpp (17244, 2002-08-01)
borZoi-1.0.2\src\borzoi.h (7567, 2002-05-07)
borZoi-1.0.2\src\borzoi_math.h (7618, 2002-03-26)
borZoi-1.0.2\src\borzoi_util.h (2927, 2002-03-26)
borZoi-1.0.2\src\curve.cpp (3107, 2002-03-26)
borZoi-1.0.2\src\ecdsa.cpp (2685, 2002-05-07)
borZoi-1.0.2\src\ecies.cpp (2182, 2002-05-07)
borZoi-1.0.2\src\eckas_dh1.cpp (1295, 2002-03-26)
borZoi-1.0.2\src\ec_key_pair.cpp (1870, 2002-05-07)
borZoi-1.0.2\src\ec_primitives.cpp (5177, 2003-09-21)
borZoi-1.0.2\src\hash.cpp (3748, 2002-03-26)
... ...

borZoi - An Elliptic Curve Cryptography Library - version 0.9.0 --------------------------------------------------------------- Copyright (C) 2001 Anthony Mulcahy License ------- borZoi is an Elliptic Curve Cryptography Library distributed under the terms of the GNU General Public License (GPL) (see the COPYING file for more details). The rijndael-fst.c and rijndael-fst.h files are taken from the public domain optimized Rijndael (AES) implementation written by Vincent Rijmen, Antoon Bosselaers and Paulo Barreto. The mpi.c and mpi.h files are taken from the MPI public domain arbitrary precision signed integer arithmetic library written by Michael J. Fromberger. Technical Details ----------------- borZoi implements the following algorithms using elliptic curves defined over finite fields of characteristic 2 (GF2m): * ECDSA (Elliptic Curve Digital Signature Algorithm) As specified in ANSI X9.62, FIPS 186-2 and IEEE P1363. * ECIES (Elliptic Curve Integrated Encryption Scheme) As specified in ANSI X9.63 and the IEEE P1363a Draft. * Elliptic Curve Diffie-Hellman Key Agreement Scheme As specified in ANSI X9.63 and IEEE P1363. The AES symmetric encryption scheme and SHA-1 hash algorithm are also supported: * AES (Rijndael) symmetric encryption scheme As specified in the NIST AES draft. * SHA-1 hash algorithm As specified in FIPS 180-1. Installation ------------ borZoi can be built using either an internal math library or Victor Shoup's NTL number theory library which provides better performance. If NTL is used, it must be first downloaded from http://www.shoup.net and installed. GNU Development Tools: 1) (If NTL is not installed) ./configure (If NTL is installed) ./configure --enable-ntl 2) make 3) make install Microsoft Visual C++ 6: 1) Open the workspace file in Microsoft Visual C++ 1.1) (Only if NTL is installed) Replace the USE_MPI preprocessor definition with USE_NTL in the preprocessor definitions section of the C/C++ tab of the Project Settings dialog box. 1.2) (Only if NTL is installed) Delete the math_mpi.cpp file from the source files list and replace it with the math_ntl.cpp file. 2) Build. Microsoft Visual Studio.net: 1) Open the solution file in Microsoft Visual Studio .net 1.1) (Only if NTL is installed) Replace the USE_MPI preprocessor definition with USE_NTL in the preprocessor definitions section of the C/C++ tab of the Project Settings dialog box. 1.2) (Only if NTL is installed) Delete the math_mpi.cpp file from the source files list and replace it with the math_ntl.cpp file. 2) Build. Usage ----- Please refer to the manual (borZoi.pdf or borZoi.ps) Future Development ------------------ Only bug fixes and changes required for compatibility with cryptographic standards will be added between now and the 1.0.0 release. Comments and Bug Reports ------------------------ We welcome any comments or bug reports which you may have, however please note that we cannot accept any patches for legal reasons, because the borZoi code is also used in our commercial products. Please send bug reports and comments to borzoi@dragongate-technologies.com Commercial Support ------------------ Commercial support and cryptographic consulting is also available, for details please send mail to sales@dragongate-technologies.com Acknowledgements ---------------- Thanks to John Moses for identifying a securiy problem in the KDF2 function. Thanks to Takako, for all her support and encouragement.

近期下载者

相关文件


收藏者