Content preview: 2011/12/4 István Lakatos : > The problem I ran into while
trying to implement RSA in Common Lisp for my > cryptography class was calculating
the square root of a bignum (to > demonstrate the Wiener attack on the cipher).
There seems to be no bignum > equivalent to floating point numbers. Are there
any libraries that rectify > this issue? I couldn't seem to find any. [...]
Content analysis details: (-100.7 points, 5.0 required)
pts rule name description
---- ---------------------- --------------------------------------------------
-100 USER_IN_WHITELIST From: address is in the user's white-list
0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider
(hans.huebner[at]gmail.com)
-0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low
trust
[209.85.161.179 listed in list.dnswl.org]
-0.0 SPF_PASS SPF: sender matches SPF record
0.0 T_DKIM_INVALID DKIM-Signature header exists but is not valid
X-BeenThere: pro-***@public.gmane.org
X-Mailman-Version: 2.1.13
Precedence: list
List-Id: Common Lisp Professionals <pro.common-lisp.net>
List-Unsubscribe: <http://lists.common-lisp.net/cgi-bin/mailman/options/pro>,
<mailto:pro-request-***@public.gmane.org?subject=unsubscribe>
List-Archive: <http://lists.common-lisp.net/pipermail/pro>
List-Post: <mailto:pro-***@public.gmane.org>
List-Help: <mailto:pro-request-***@public.gmane.org?subject=help>
List-Subscribe: <http://lists.common-lisp.net/cgi-bin/mailman/listinfo/pro>,
<mailto:pro-request-***@public.gmane.org?subject=subscribe>
Errors-To: pro-bounces-***@public.gmane.org
X-Spam-Score: -100.7 (---------------------------------------------------)
X-Spam-Report: Spam detection software, running on the system "tiger.common-lisp.net", has
identified this incoming email as possible spam. The original message
has been attached to this so you can view it (if it isn't spam) or label
similar future email. If you have any questions, see
the administrator of that system for details.
Content preview: 2011/12/4 István Lakatos : > The problem I ran into while
trying to implement RSA in Common Lisp for my > cryptography class was calculating
the square root of a bignum (to > demonstrate the Wiener attack on the cipher).
There seems to be no bignum > equivalent to floating point numbers. Are there
any libraries that rectify > this issue? I couldn't seem to find any. [...]
Content analysis details: (-100.7 points, 5.0 required)
pts rule name description
---- ---------------------- --------------------------------------------------
-0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low
trust
[209.85.161.179 listed in list.dnswl.org]
-100 USER_IN_WHITELIST From: address is in the user's white-list
0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider
(hans.huebner[at]gmail.com)
-0.0 SPF_PASS SPF: sender matches SPF record
0.0 T_DKIM_INVALID DKIM-Signature header exists but is not valid
Archived-At: <http://permalink.gmane.org/gmane.lisp.cl-pro/584>
Post by István LakatosThe problem I ran into while trying to implement RSA in Common Lisp for my
cryptography class was calculating the square root of a bignum (to
demonstrate the Wiener attack on the cipher). There seems to be no bignum
equivalent to floating point numbers. Are there any libraries that rectify
this issue? I couldn't seem to find any.
Clozure CL implements EXPT and SQRT for bignums.
-Hans