Remember when people were launching rockets with the fins made of win95 CDs?
The "technology" is already there, and the proof of concept has been tested on
dispensable items. <G>
Mike Stay wrote:
>
> Quoting http://www.digicrime.com/itar.html :
>
> "Our crack team of legal advisors has discovered a loophole in the ITAR
> export restrictions on cryptographic devices from the US. Specifically,
> it now appears that cryptographic software may be flown across the
> Mexican border using model rockets without regard to ITAR restrictions!
> Here's why. Section 120.17 of the ITAR reads as follows:
>
> @ 120.17 -- Export.
> Export means:
> (1) Sending or taking a defense article out of the United States in any
> manner, except by mere travel outside of the United States by a person
> whose personal knowledge includes technical data; or
>
> [...continuing later...]
>
> (6) A launch vehicle or payload shall not, by reason of the launching
> of such vehicle, be considered an export for purposes of this
> subchapter...
>
> That should make the Software Publisher's Association happy."
> --
> Mike Stay
> Cryptographer / Programmer
> AccessData Corp.
> mailto:[EMAIL PROTECTED]
--
o Mordy Ovits
o Cryptographic Engineer
o LockStar Inc.
---------------------------------------------------------------------------
#!/usr/local/bin/python
from sys import*;from string import*;a=argv;[s,p,q]=filter(lambda x:x[:1]!=
'-',a);d='-d'in a;e,n=atol(p,16),atol(q,16);l=(len(q)+1)/2;o,inb=l-d,l-1+d
while s:s=stdin.read(inb);s and map(stdout.write,map(lambda i,b=pow(reduce(
lambda x,y:(x<<8L)+y,map(ord,s)),e,n):chr(b>>8*i&255),range(o-1,-1,-1)))