NODE ba686f54Securing CDROM from piracy
Vipul Ved Prakash <vipul@pobox.com>Thu, 16 May 1996 14:31:53 +0800
We have developed a multimedia resource that will be cut on a CD-ROM for
retailling. Since we don't have our own distributers newtwork we will be
collobarating with another firm for distribution. Is there any way of making
sure that the guy doesnt pull a fast on on us? Can we ensure that he cannot
duplicate the thing and start selling it without sharing the profit. Or
alternatively is there any protocol we could follow that will ensure a fair
game?
Vipul
--
.od8888bo. \|/
.d%::::88::888b. (@ @)
.d888::::::::8:888%. ------------------oOO-(_)-OOo-----------------
88888:::::::88888::%. You walk across with your flowers in your hand
d888888:::88;888888::b Trying to tell me no one understands
888888888:888888888888 Trade in your hours for a hand full of dimes
Y8888888::::::888888%P Gonna make it baby in our prime.
'8888888:::::::8888:%' ----------------------------------------------
'88888888:::888888%' Vipul Ved Prakash Fax : +91-11-3328849
'8888888::88888%' Positive Ideas. Internet : vipul@pobox.com
'"Y88%B8P"' ----------------------------------------------
NODE 4c4a4f42Re: Securing CDROM from piracy
"Perry E. Metzger" <perry@piermont.com>Sat, 18 May 1996 04:05:08 +0800
Vipul Ved Prakash writes:
> We have developed a multimedia resource that will be cut on a CD-ROM for
> retailling. Since we don't have our own distributers newtwork we will be
> collobarating with another firm for distribution. Is there any way of making
> sure that the guy doesnt pull a fast on on us? Can we ensure that he cannot
> duplicate the thing and start selling it without sharing the profit.
Since he can read the CD, he can duplicate it.
I will point out anyone buying a CD can do the same thing.
> Or alternatively is there any protocol we could follow that will
> ensure a fair game?
I can't think of how...
Perry
NODE f35299f0Re: Securing CDROM from piracy
Ed Carp <erc@dal1820.computek.net>Sat, 18 May 1996 07:57:04 +0800
> Vipul Ved Prakash writes:
> > We have developed a multimedia resource that will be cut on a CD-ROM for
> > retailling. Since we don't have our own distributers newtwork we will be
> > collobarating with another firm for distribution. Is there any way of making
> > sure that the guy doesnt pull a fast on on us? Can we ensure that he cannot
> > duplicate the thing and start selling it without sharing the profit.
>
> Since he can read the CD, he can duplicate it.
>
> I will point out anyone buying a CD can do the same thing.
>
> > Or alternatively is there any protocol we could follow that will
> > ensure a fair game?
>
> I can't think of how...
This is the way I did something similar:
puts("Enter your company name:");
fgets(company, 80, stdin);
puts("Please call 1-800-555-1212 for your encryption key:");
puts("Enter it now:");
fgets(supplied_key, 80, stdin);
/* Compute a key based on what the user typed in */
/* This is using md5 as an example */
computed_key = md5(company);
/* Now, compare it with what they typed in */
if(strcmp(supplied_key, computed_key) != 0)
{
puts("Incorrect key!");
exit(1);
}
...
As long as you keep the way you compute the key a secret, there's little
chance that someone else could rip you off, since the key is
implementation-dependent.
--
Ed Carp, N7EKG Ed.Carp@linux.org, ecarp@netcom.com
214/993-3935 voicemail/digital pager
Finger ecarp@netcom.com for PGP 2.5 public key an88744@anon.penet.fi
"Past the wounds of childhood, past the fallen dreams and the broken families,
through the hurt and the loss and the agony only the night ever hears, is a
waiting soul. Patient, permanent, abundant, it opens its infinite heart and
asks only one thing of you ... 'Remember who it is you really are.'"
-- "Losing Your Mind", Karen Alexander and Rick Boyes
The mark of a good conspiracy theory is its untestability.
-- Andrew Spring
NODE 57ed8d9aRe: Securing CDROM from piracy
Rich Graves <llurch@networking.stanford.edu>Sat, 18 May 1996 11:57:09 +0800
Just put your .signature on the CD. Nobody would dare counterfeit that.
-rich
On Wed, 15 May 1996, Vipul Ved Prakash wrote:
> We have developed a multimedia resource that will be cut on a CD-ROM for
> retailling. Since we don't have our own distributers newtwork we will be
> collobarating with another firm for distribution. Is there any way of making
> sure that the guy doesnt pull a fast on on us? Can we ensure that he cannot
> duplicate the thing and start selling it without sharing the profit. Or
> alternatively is there any protocol we could follow that will ensure a fair
> game?
>
> Vipul
>
>
> --
>
> .od8888bo. \|/
> .d%::::88::888b. (@ @)
> .d888::::::::8:888%. ------------------oOO-(_)-OOo-----------------
> 88888:::::::88888::%. You walk across with your flowers in your hand
> d888888:::88;888888::b Trying to tell me no one understands
> 888888888:888888888888 Trade in your hours for a hand full of dimes
> Y8888888::::::888888%P Gonna make it baby in our prime.
> '8888888:::::::8888:%' ----------------------------------------------
> '88888888:::888888%' Vipul Ved Prakash Fax : +91-11-3328849
> '8888888::88888%' Positive Ideas. Internet : vipul@pobox.com
> '"Y88%B8P"' ----------------------------------------------
>