|
Post Number: 1
|
humanoid
FoxHound Member
Group: Awaiting Authorization
Posts: 83
Joined: Jul. 2002
|
|
Posted on: Jul. 08 2002,04:38 |
|
|
i just created my first encryption program in C and my friends want a copy of it. but i can't put my name on the program cause my compiler won;t allow it. and knowing my friends, they will just call the program their own and redistribute it all over the net.
i want some way of saying it's mine.
the program opens in DOS and i just want my name on the top. do you know of any tricks or different ways to print something on there. i want to keep this compiler
::please help::
-------------- "...metal gear..."
|
|
|
|
Post Number: 2
|
Wiley
©0®ÞØ®4+3 whØ®3
Group: Members
Posts: 1268
Joined: Oct. 2001
|
|
Posted on: Jul. 08 2002,04:44 |
|
|
It doesn't matter ...your friends will just use a hex editor to change the name that shows up to their name ...or something like their name with the same amount of characters. That's why people go for required registration after 5 uses and then charge people for the app ...then let them do with it whatever they want with it.
|
|
|
|
Post Number: 3
|
forumwhore
Fear Me, I Am Change.
Group: Members
Posts: 3282
Joined: Dec. 2001
|
|
Posted on: Jul. 08 2002,05:52 |
|
|
They may not look at every line. copywrite it to your self, not that it'd work.
You might get lucky for free.
-------------- Posting from; El Pueblo de Nuestra Senora la Reina de Los Angeles de Porciuncula
|
|
|
|
Post Number: 4
|
RadioActive
BioHZRD
Group: Members
Posts: 483
Joined: Jan. 2002
|
|
Posted on: Jul. 08 2002,05:58 |
|
|
you can alway do something wierd that would make it hard for them to edit. like for example do something like save alphabet as one string as then cut letters out to spell something out. it will be a lot of extra code and hard to fake. i've seen that done before. i think the best example i can give you is mid() command in mirc. i think that's what it is. i know there's function like that in VB too, so there's gotta be one in C
-------------- Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. -Albert Einstein
|
|
|
|
Post Number: 5
|
forumwhore
Fear Me, I Am Change.
Group: Members
Posts: 3282
Joined: Dec. 2001
|
|
Posted on: Jul. 08 2002,06:23 |
|
|
I don't know how it works, but I know what it can do.
-------------- Posting from; El Pueblo de Nuestra Senora la Reina de Los Angeles de Porciuncula
|
|
|
|
Post Number: 6
|
humanoid
FoxHound Member
Group: Awaiting Authorization
Posts: 83
Joined: Jul. 2002
|
|
Posted on: Jul. 10 2002,15:17 |
|
|
this might make me a l4m0r, but how do you do a required registration after a certain amount of time?
-------------- "...metal gear..."
|
|
|
|
Post Number: 7
|
Wiley
©0®ÞØ®4+3 whØ®3
Group: Members
Posts: 1268
Joined: Oct. 2001
|
|
Posted on: Jul. 10 2002,15:34 |
|
|
write a key to the registry and incriment it down with every use. If the key exists and it's set to 0 the app won't run, it'll just say Please Register. A variation could write to an ini file but that is too obvious. Just an idea ...although it my bloat the original program.
|
|
|
|
Post Number: 8
|
humanoid
FoxHound Member
Group: Awaiting Authorization
Posts: 83
Joined: Jul. 2002
|
|
Posted on: Jul. 10 2002,15:54 |
|
|
i dont use regedit often..so um...can you like take me through how to set it up to increment down.
all i use regedit (so far) for is to tweak my XP system.
<sigh>
...damn im a l4m0r.
</sigh>
-------------- "...metal gear..."
|
|
|
|
Post Number: 9
|
Wiley
©0®ÞØ®4+3 whØ®3
Group: Members
Posts: 1268
Joined: Oct. 2001
|
|
Posted on: Jul. 10 2002,16:38 |
|
|
RegCreateKeyEx will create a key and RegSetValueEx will change an existing key, how you go about getting a value that is one less then the current value may take some creativity ...I've seen it done on various share ware apps but I have never done it myself.
|
|
|
|
|