Page 2 of 2 <12
Topic Options
#99040 - 2003-09-01 02:07 PM Re: KiXcrypt version 3.03x - call for testers.
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
I anyway need to add wkix32.exe and kixforms.dll to about all my packages as you can never be sure what to expect on the dest wksta.
thus the size goes to about 500k with current style.
to get it around 400 is already a huge advantage [Wink]
_________________________
!

download KiXnet

Top
#99041 - 2003-09-03 12:23 AM Re: KiXcrypt version 3.03x - call for testers.
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
k, also what I want... [Big Grin]
how can I know where is the original crypted.exe?

would like to have it copied to other location for later use on the fly... is that possible?
_________________________
!

download KiXnet

Top
#99042 - 2003-09-03 10:05 AM Re: KiXcrypt version 3.03x - call for testers.
Richard H. Administrator Offline
Administrator
*****

Registered: 2000-01-24
Posts: 4946
Loc: Leatherhead, Surrey, UK
quote:
how can I know where is the original crypted.exe?
It's already there. You won't find mention of it in the main documentation, as it has only been introduced with this experimental version.

Have a look at the new features described in the first post in this thread, specifically the %KIXCRYPTEXE% environment variable. This too is experimental, so let me know what you find.

Top
#99043 - 2003-09-03 11:46 AM Re: KiXcrypt version 3.03x - call for testers.
Richard H. Administrator Offline
Administrator
*****

Registered: 2000-01-24
Posts: 4946
Loc: Leatherhead, Surrey, UK
Bad (but not unexpected) news on the compression front.

The easy way to get compression into the existing code is to do it in this order:
quote:
source->encrypt->compress
It just took a couple of hours to implement this.

Unfortunately, the output from the encryption algorithm is extremely random - good for encryption, not so good for compression. This means that the compression routines cannot identify a reasonable sized dictionary to work with, and so the compression rates are very small.

The solution is to change the processing to:
quote:
source->compress->encrypt
This will require an extensive re-write of the existing code, and some creative thinking.

Top
#99044 - 2003-09-04 12:16 AM Re: KiXcrypt version 3.03x - call for testers.
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
stupid me.
should have read the topic before replying, damn...

anyway, you are right on that compression stuff.
have had a clance at it and even got some things here at home.
zzip zzlib-libraries and some more.
but, for me it would take too much to come up with self-executing package, I rather let you work on it [Big Grin]
_________________________
!

download KiXnet

Top
#99045 - 2003-09-08 06:56 PM Re: KiXcrypt version 3.03x - call for testers.
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
hmm...
how do I check my kixcrypt version?
I just found out that tried the kixcryptexe with nul results for some time and then re-downloaded the crypter and got it working.
damn, we are blind... eh, lost with this wkixcrpt.exe [Big Grin]
_________________________
!

download KiXnet

Top
#99046 - 2003-09-09 11:29 AM Re: KiXcrypt version 3.03x - call for testers.
Richard H. Administrator Offline
Administrator
*****

Registered: 2000-01-24
Posts: 4946
Loc: Leatherhead, Surrey, UK
quote:
how do I check my kixcrypt version?
There are a few ways. If you run "kixcrypt.exe" with no parameters it will display the version and useage info. If you supply the "-v" option it will give a long version history.

wkixcrpt.exe is more tricky, as there is no console output. The two are always kept at the same version - they are created with the same source code, the only difference is an extra flag supplied to the linker which disabled the console.

If you are paranoid however, there is an environment variable %KIXCRYPTVER% which holds the version number. Create a little script to display the version number in a MessageBox(), encrypt and run.

[ 09. September 2003, 11:29: Message edited by: Richard H. ]

Top
#99047 - 2003-09-09 11:44 AM Re: KiXcrypt version 3.03x - call for testers.
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
ver.
heh, you have been quite thorough with that.
as, I don't keep files ever together.

I throw them around my HD and then wonder why it ain't working.
now I have the method for checking the vers.
thanks.

btw, %kixcryptexe% seems to work fine.
in "production" already.
_________________________
!

download KiXnet

Top
#99048 - 2003-09-18 02:52 AM Re: KiXcrypt version 3.03x - call for testers.
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
hmm...
what is this:
quote:

C:\Documents and Settings\niemjo.PIKV\Työpöytä\checker installer>setup
Decrypting from KiXcrypt version 003.03x
KiXcrypt author: Richard Howarth (rhowarth@sgb.co.uk)
FATAL: cannot open file "C:\DOCUME~1\NIEMJO~1.PIK\LOCALS~1\Temp\bbchecker3.0 beta 7\setup.ini" for writing.

it sounds like:
- if I have a file in temp with same name, kixcrypt dies
- if I want to make a workaround by setting it to use own tempfolder, it dies as it does not support that

or did I miss something again?
_________________________
!

download KiXnet

Top
#99049 - 2003-09-18 10:26 AM Re: KiXcrypt version 3.03x - call for testers.
Richard H. Administrator Offline
Administrator
*****

Registered: 2000-01-24
Posts: 4946
Loc: Leatherhead, Surrey, UK
I covered this in the last few paragraphs of reply http://www.kixtart.org/board/ultimatebb.php?ubb=get_topic;f=14;t=000468;p=1#000017

Basically:
  • The creation of temporary directories is not supported.
  • Overwriting existing files is not supported.
It may be supported in a future version.
When script finishes running, the files that the script created are removed.

The only files which will not be removed are:
1) Additional files your script has created when it run.
2) Files that KiXcrypt has no permission to remove, because they are still in use or permissions have changed during execution.
3) Files left because of an abort.

Top
#99050 - 2003-09-19 12:16 AM Re: KiXcrypt version 3.03x - call for testers.
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
ja.
it came back to wishing that all might go right.
well.
thanks anyways, nice tool.
_________________________
!

download KiXnet

Top
Page 2 of 2 <12


Moderator:  Arend_, Allen, Jochen, Radimus, Glenn Barnas, ShaneEP, Ruud van Velsen, Mart 
Hop to:
Shout Box

Who's Online
0 registered and 369 anonymous users online.
Newest Members
rrosell, PatrickPinto, Raoul, Timothy, Jojo67
17877 Registered Users

Generated in 0.062 seconds in which 0.024 seconds were spent on a total of 12 queries. Zlib compression enabled.

Search the board with:
superb Board Search
or try with google:
Google
Web kixtart.org