[ActiveLock-Development] CVS: alcrypto RSA.C,1.2,1.3 Version.rc,1.2,1.3
Brought to you by:
ialkan
From: Thanh H. T. <th...@us...> - 2004-04-18 02:02:10
|
Update of /cvsroot/activelock/alcrypto In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29992 Modified Files: RSA.C Version.rc Log Message: Batch commit for 2.0.5--see individual module change logs for details Index: RSA.C =================================================================== RCS file: /cvsroot/activelock/alcrypto/RSA.C,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- RSA.C 18 Sep 2003 03:46:59 -0000 1.2 +++ RSA.C 18 Apr 2004 02:02:00 -0000 1.3 @@ -76,6 +76,8 @@ * 07/27/03 th2tran Adapted from PuTTY project for used by the ActiveLock project. * 09/14/03 th2tran Fixed bug in byte count calculation for key blob generation that * resulted in crashing when the blobs are used to recreate the key. + * 04/10/04 th2tran Fixed bug in byte count calculation that resulted in signature + * verification mismatch. * ***********************************************************************************************/ @@ -800,7 +802,7 @@ ret = 1; - bytes = (bignum_bitcount(rsa->modulus) + 8)/ 8; + bytes = (bignum_bitcount(rsa->modulus) + 7)/ 8; /* Top (partial) byte should be zero. */ if (bignum_byte(out, bytes - 1) != 0) goto exit_label; /* First whole byte should be 1. */ Index: Version.rc =================================================================== RCS file: /cvsroot/activelock/alcrypto/Version.rc,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Version.rc 18 Sep 2003 03:47:42 -0000 1.2 +++ Version.rc 18 Apr 2004 02:02:00 -0000 1.3 @@ -28,8 +28,8 @@ // VS_VERSION_INFO VERSIONINFO - FILEVERSION 2,0,2,0 - PRODUCTVERSION 2,0,2,0 + FILEVERSION 2,0,5,0 + PRODUCTVERSION 2,0,5,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x21L @@ -47,15 +47,15 @@ VALUE "Comments", "\0" VALUE "CompanyName", "ActiveLock Software Group\0" VALUE "FileDescription", "ActiveLock Cryptography Provider DLL\0" - VALUE "FileVersion", "1, 1, 0, 0\0" + VALUE "FileVersion", "2, 0, 5, 0\0" VALUE "InternalName", "ALCrypto\0" VALUE "LegalCopyright", "Copyright © 2003 ActiveLock Software Group\0" VALUE "LegalTrademarks", "\0" VALUE "OriginalFilename", "ALCrypto.dll\0" VALUE "PrivateBuild", "\0" VALUE "ProductName", "ActiveLock\0" - VALUE "ProductVersion", "2.0.2\0" - VALUE "SpecialBuild", "alpha2\0" + VALUE "ProductVersion", "2.0.5\0" + VALUE "SpecialBuild", "alpha4\0" END END BLOCK "VarFileInfo" |