From: Simon Spero <ses@tipper.oit.unc.edu>
To: Thomas Grant Edwards <tedwards@Glue.umd.edu>
Message Hash: 492ce399fa439a741f28c8bb4fbfcdce79a0816787d198afb1e76d1c9e0c48a7
Message ID: <Pine.SOL.3.91.960201185557.11657A-100000@chivalry>
Reply To: <Pine.SUN.3.91.960201181356.2008H-100000@hertz.isr.umd.edu>
UTC Datetime: 1996-02-02 03:31:55 UTC
Raw Date: Fri, 2 Feb 1996 11:31:55 +0800
From: Simon Spero <ses@tipper.oit.unc.edu>
Date: Fri, 2 Feb 1996 11:31:55 +0800
To: Thomas Grant Edwards <tedwards@Glue.umd.edu>
Subject: Re: Prediction about new credit card number scheme
In-Reply-To: <Pine.SUN.3.91.960201181356.2008H-100000@hertz.isr.umd.edu>
Message-ID: <Pine.SOL.3.91.960201185557.11657A-100000@chivalry>
MIME-Version: 1.0
Content-Type: text/plain
On Thu, 1 Feb 1996, Thomas Grant Edwards wrote:
>
> >By JOHN MARKOFF AN FRANCISCO --
> >Hoping to remove a major impediment to credit card transactions over the
> >Internet, a business group led by Mastercard International and Visa
> >International plans to announce an industry-standard technology Thursday
> >for protecting the security of electronic payments.
>
> My prediction about the new CC standard: it will be a mistake if they
> don't pass on the details to cypherpunks.
>
> BTW - are any micropayment schemes reving up to commerciality yet???
>
> -Thomas
>
>
>
>
>
(defun modexpt (x y n) "computes (x^y) mod n"
(cond ((= y 0) 1)
((= y 1) (mod x n))
((evenp y) (mod (expt (modexpt x (/ y 2) n) 2) n))
(t (mod (* x (modexpt x (1- y) n)) n))))
Return to February 1996
Return to “Thomas Grant Edwards <tedwards@Glue.umd.edu>”