From: cpunk@remail.ecafe.org (ECafe Anonymous Remailer)
To: cypherpunks@toad.com
Message Hash: 38168ae85c9d2e74cafc509e32a0df03f631e2ba59123a8c6ac9d27e8f01a75d
Message ID: <199512182157.VAA32380@pangaea.ang.ecafe.org>
Reply To: N/A
UTC Datetime: 1995-12-19 03:50:59 UTC
Raw Date: Tue, 19 Dec 1995 11:50:59 +0800
From: cpunk@remail.ecafe.org (ECafe Anonymous Remailer)
Date: Tue, 19 Dec 1995 11:50:59 +0800
To: cypherpunks@toad.com
Subject: No Subject
Message-ID: <199512182157.VAA32380@pangaea.ang.ecafe.org>
MIME-Version: 1.0
Content-Type: text/plain
Submitted for your approval...
The recent CryptoLib, offered by the nice folks at AT&T (Written by Jack
Lacy and Don Mitchell), has a small problem: folks without RSA licenses are
given a crippled version without functional RSA code. It sucks, but they
must cover their collective asses.
That small problem has now been rectified.
Is CryptoLib available overseas yet?
================================CUT HERE===================================
*** - Sun Dec 17 20:05:50 1995
--- rsa.c Sun Dec 17 20:05:36 1995
***************
*** 411,421 ****
#endif
{
BigInt result;
! fprintf(stderr, "RSA encryption not supported without license.\n");
! result = bigInit(0);
return result;
}
-
#ifdef K_AND_R
_TYPE( BigInt )
RSADecrypt(message, key)
--- 411,420 ----
#endif
{
BigInt result;
! result = bigInit(0);
! bigPow(message, key->publicExponent, key->modulus, result);
return result;
}
#ifdef K_AND_R
_TYPE( BigInt )
RSADecrypt(message, key)
***************
*** 427,434 ****
#endif
{
BigInt result;
! fprintf(stderr, "RSA decryption not supported without license.\n");
! result = bigInit(0);
return result;
}
--- 426,433 ----
#endif
{
BigInt result;
! result = bigInit(0);
! chineseRemTheorem(message, key, result);
return result;
}
Return to December 1995
Return to “cpunk@remail.ecafe.org (ECafe Anonymous Remailer)”
1995-12-19 (Tue, 19 Dec 1995 11:50:59 +0800) - No Subject - cpunk@remail.ecafe.org (ECafe Anonymous Remailer)